diff --git a/Documentation.html b/Documentation.html
index ce08ff826e..307a24a41c 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -1349,7 +1349,15 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE
redirected after logout (doesn't affect config authentication method).
Should be absolute including protocol.
-
+
$cfg['Servers'][$i]['StatusCacheDatabases'] array of strings
+ Enables caching of TABLE STATUS outputs for specific databases on this server (in some cases TABLE STATUS can be very slow, so you may want to cache it). APC is used (if the PHP extension is available, if not, this setting is ignored silently). You have to provide StatusCacheLifetime .
+ Takes effect only if
+ DisableIS
+ is true.
+
+ $cfg['Servers'][$i]['StatusCacheLifetime'] integer
+ Lifetime in seconds of the TABLE STATUS cache if StatusCacheDatabases is used.
+
$cfg['ServerDefault'] integer
If you have more than one server configured, you can set
$cfg['ServerDefault'] to any one of them to autoconnect to
diff --git a/js/navigation.js b/js/navigation.js
index 843a998675..cd65e595d8 100644
--- a/js/navigation.js
+++ b/js/navigation.js
@@ -202,6 +202,37 @@ function clear_fast_filter()
fast_filter('');
}
+/**
+ * hide all LI elements with second A tag which doesn`t contain requested value
+ *
+ * @param string value requested value
+ *
+ */
+function fast_db_filter(value)
+{
+ var lowercase_value = value.toLowerCase();
+
+ $('#databaseList li a').each(function(idx, elem) {
+ var $elem = $(elem);
+ if (value && $elem.html().toLowerCase().indexOf(lowercase_value) == -1) {
+ $elem.parent().hide();
+ } else {
+ $elem.parents('li').show();
+ }
+ });
+
+}
+
+/**
+ * Clears fast database filter.
+ */
+function clear_fast_db_filter()
+{
+ var $elm = $('#fast_db_filter');
+ $elm.val('');
+ fast_db_filter('');
+}
+
/**
* Reloads the recent tables list.
*/
@@ -251,6 +282,32 @@ $(function(){
}
});
+ /* Fast database filter */
+ var txtDb = $('#fast_db_filter').val();
+
+ $('#fast_db_filter.gray').live('focus', function() {
+ $(this).removeClass('gray');
+ clear_fast_db_filter();
+ });
+
+ $('#fast_db_filter:not(.gray)').live('focusout', function() {
+ var $input = $(this);
+ if ($input.val() == '') {
+ $input
+ .addClass('gray')
+ .val(txtDb);
+ }
+ });
+
+ $('#clear_fast_db_filter').click(function() {
+ clear_fast_db_filter();
+ $('#fast_db_filter').focus();
+ });
+
+ $('#fast_db_filter').keyup(function(evt) {
+ fast_db_filter($(this).val());
+ });
+
/* Jump to recent table */
$('#recentTable').change(function() {
if (this.value != '') {
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 6c53abf628..d9de2abee9 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -953,7 +953,7 @@ function PMA_reloadNavigation($jsonly = false)
'',
'&'
);
- if (!$jsonly) {
+ if (! $jsonly) {
echo '' . PHP_EOL;
}
@@ -1370,11 +1370,11 @@ function PMA_profilingSupported()
}
/**
- * Displays a form with the Profiling checkbox
+ * Returns HTML for the form with the Profiling checkbox
*
* @param string $sql_query sql query
*
- * @return void
+ * @return string HTML for the form with the Profiling checkbox
*
* @access public
*/
@@ -1869,7 +1869,7 @@ function PMA_linkOrButton($url, $message, $tag_params = array(),
$displayed_message = '';
// Add text if not already added
if (stristr($message, ' '
@@ -2599,14 +2599,14 @@ function PMA_externalBug($functionality, $component, $minimum_version, $bugref)
}
/**
- * Generates and echoes an HTML checkbox
+ * Returns an HTML checkbox
*
* @param string $html_field_name the checkbox HTML field
* @param string $label label for checkbox
* @param boolean $checked is it initially checked?
* @param boolean $onclick should it submit the form on click?
*
- * @return void
+ * @return string HTML for the checkbox
*/
function PMA_getCheckbox($html_field_name, $label, $checked, $onclick)
{
@@ -3091,7 +3091,7 @@ function PMA_replaceBinaryContents($content)
* @param binary $data GIS data
* @param bool $includeSRID Add SRID to the WKT
*
- * @return GIS data in Well Know Text format
+ * @return string GIS data in Well Know Text format
*/
function PMA_asWKT($data, $includeSRID = false)
{
@@ -3281,7 +3281,7 @@ function PMA_ajaxResponse($message, $success = true, $extra_data = array())
// At this point, other headers might have been sent;
// even if $GLOBALS['is_header_sent'] is true,
// we have to send these additional headers.
- if (!defined('TESTSUITE')) {
+ if (! defined('TESTSUITE')) {
header('Cache-Control: no-cache');
header("Content-Type: application/json");
}
@@ -3303,7 +3303,7 @@ function PMA_ajaxResponse($message, $success = true, $extra_data = array())
*/
function PMA_browseUploadFile($max_upload_size)
{
- if ($GLOBALS['is_upload'] && !empty($GLOBALS['cfg']['UploadDir'])) {
+ if ($GLOBALS['is_upload'] && ! empty($GLOBALS['cfg']['UploadDir'])) {
echo '';
} else {
echo '';
@@ -3516,7 +3516,7 @@ function PMA_getGISDatatypes($upper_case = false)
*
* @param string $gis_string GIS string
*
- * @return GIS data enclosed in 'GeomFromText' function
+ * @return string GIS data enclosed in 'GeomFromText' function
*/
function PMA_createGISData($gis_string)
{
diff --git a/libraries/config.default.php b/libraries/config.default.php
index b68c175ab8..ba0e9e1e35 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -517,6 +517,24 @@ $cfg['Servers'][$i]['tracking_add_drop_table'] = true;
$cfg['Servers'][$i]['tracking_add_drop_database'] = true;
+/**
+ * Enables caching of TABLE STATUS outputs for specific databases on this server
+ * (in some cases TABLE STATUS can be very slow, so you may want to cache it).
+ * APC is used (if the PHP extension is available, if not, this setting is ignored
+ * silently). You have to provide StatusCacheLifetime.
+ * Takes effect only if DisableIS is true.
+ *
+ * @global array $cfg['Servers'][$i]['StatusCacheDatabases']
+ */
+$cfg['Servers'][$i]['StatusCacheDatabases'] = array();
+
+/**
+ * Lifetime in seconds of the TABLE STATUS cache if StatusCacheDatabases is used
+ *
+ * @global integer $cfg['Servers'][$i]['StatusCacheLifetime']
+ */
+$cfg['Servers'][$i]['StatusCacheLifetime'] = 0;
+
/**
* Default server (0 = no default server)
*
@@ -883,6 +901,14 @@ $cfg['DisplayServersList'] = false;
*/
$cfg['DisplayDatabasesList'] = 'auto';
+/**
+ * display a JavaScript database filter in the left frame
+ * when more then x databases are present
+ *
+ * @global boolean $cfg['LeftDisplayDatabaseFilterMinimum']
+ */
+$cfg['LeftDisplayDatabaseFilterMinimum'] = 30;
+
/**
* target of the navigation panel quick access icon
*
diff --git a/libraries/config/ConfigFile.class.php b/libraries/config/ConfigFile.class.php
index 64bc72d7f4..ea19fbd5b0 100644
--- a/libraries/config/ConfigFile.class.php
+++ b/libraries/config/ConfigFile.class.php
@@ -18,45 +18,45 @@ class ConfigFile
* Stores default PMA config from config.default.php
* @var array
*/
- private $cfg;
+ private $_cfg;
/**
* Stores original PMA_Config object, not modified by user preferences
* @var PMA_Config
*/
- private $orgCfgObject;
+ private $_orgCfgObject;
/**
* Stores allowed values for non-standard fields
* @var array
*/
- private $cfgDb;
+ private $_cfgDb;
/**
* Keys which will be always written to config file
* @var array
*/
- private $persistKeys = array();
+ private $_persistKeys = array();
/**
* Changes keys while updating config in {@link updateWithGlobalConfig()}
* or reading by {@link getConfig()} or {@link getConfigArray()}
* @var array
*/
- private $cfgUpdateReadMapping = array();
+ private $_cfgUpdateReadMapping = array();
/**
* Key filter for {@link set()}
* @var array|null
*/
- private $setFilter;
+ private $_setFilter;
/**
* Instance id (key in $_SESSION array, separate for each server -
* ConfigFile{server id})
* @var string
*/
- private $id;
+ private $_id;
/**
* Result for {@link _flattenArray()}
@@ -77,15 +77,15 @@ class ConfigFile
private function __construct()
{
// load default config values
- $cfg = &$this->cfg;
+ $cfg = &$this->_cfg;
include './libraries/config.default.php';
$cfg['fontsize'] = '82%';
// create PMA_Config to read config.inc.php values
- $this->orgCfgObject = new PMA_Config(CONFIG_FILE);
+ $this->_orgCfgObject = new PMA_Config(CONFIG_FILE);
// load additional config information
- $cfg_db = &$this->cfgDb;
+ $cfg_db = &$this->_cfgDb;
include './libraries/config.values.php';
// apply default values overrides
@@ -95,9 +95,9 @@ class ConfigFile
}
}
- $this->id = 'ConfigFile' . $GLOBALS['server'];
- if (!isset($_SESSION[$this->id])) {
- $_SESSION[$this->id] = array();
+ $this->_id = 'ConfigFile' . $GLOBALS['server'];
+ if (!isset($_SESSION[$this->_id])) {
+ $_SESSION[$this->_id] = array();
}
}
@@ -121,7 +121,7 @@ class ConfigFile
*/
public function getOrgConfigObj()
{
- return $this->orgCfgObject;
+ return $this->_orgCfgObject;
}
/**
@@ -129,12 +129,14 @@ class ConfigFile
* they are set to their default values (use only full paths)
*
* @param array $keys
+ *
+ * @return void
*/
public function setPersistKeys($keys)
{
// checking key presence is much faster than searching so move values
// to keys
- $this->persistKeys = array_flip($keys);
+ $this->_persistKeys = array_flip($keys);
}
/**
@@ -144,7 +146,7 @@ class ConfigFile
*/
public function getPersistKeysMap()
{
- return $this->persistKeys;
+ return $this->_persistKeys;
}
/**
@@ -152,45 +154,54 @@ class ConfigFile
* this method to set up a filter on {@link set()} method
*
* @param array|null $keys array of allowed keys or null to remove filter
+ *
+ * @return void
*/
public function setAllowedKeys($keys)
{
if ($keys === null) {
- $this->setFilter = null;
+ $this->_setFilter = null;
return;
}
// checking key presence is much faster than searching so move values
// to keys
- $this->setFilter = array_flip($keys);
+ $this->_setFilter = array_flip($keys);
}
/**
* Sets path mapping for updating config in
* {@link updateWithGlobalConfig()} or reading
* by {@link getConfig()} or {@link getConfigArray()}
- * @var array
+ *
+ * @param array $mapping
+ *
+ * @return void
*/
public function setCfgUpdateReadMapping(array $mapping)
{
- $this->cfgUpdateReadMapping = $mapping;
+ $this->_cfgUpdateReadMapping = $mapping;
}
/**
* Resets configuration data
+ *
+ * @return void
*/
public function resetConfigData()
{
- $_SESSION[$this->id] = array();
+ $_SESSION[$this->_id] = array();
}
/**
* Sets configuration data (overrides old data)
*
* @param array $cfg
+ *
+ * @return void
*/
public function setConfigData(array $cfg)
{
- $_SESSION[$this->id] = $cfg;
+ $_SESSION[$this->_id] = $cfg;
}
/**
@@ -199,6 +210,8 @@ class ConfigFile
* @param string $path
* @param mixed $value
* @param string $canonical_path
+ *
+ * @return void
*/
public function set($path, $value, $canonical_path = null)
{
@@ -206,30 +219,32 @@ class ConfigFile
$canonical_path = $this->getCanonicalPath($path);
}
// apply key whitelist
- if ($this->setFilter !== null && !isset($this->setFilter[$canonical_path])) {
+ if ($this->_setFilter !== null
+ && ! isset($this->_setFilter[$canonical_path])
+ ) {
return;
}
// remove if the path isn't protected and it's empty or has a default
// value
- if (!isset($this->persistKeys[$canonical_path])) {
+ if (!isset($this->_persistKeys[$canonical_path])) {
$default_value = $this->getDefault($canonical_path);
// we need original config values not overwritten by user
// preferences to allow for overwriting options set in
// config.inc.php with default values
$instance_default_value = PMA_array_read(
$canonical_path,
- $this->orgCfgObject->settings
+ $this->_orgCfgObject->settings
);
if (($value === $default_value && (defined('PMA_SETUP')
|| $instance_default_value === $default_value))
|| (empty($value) && empty($default_value) && (defined('PMA_SETUP')
|| empty($current_global)))
) {
- PMA_array_remove($path, $_SESSION[$this->id]);
+ PMA_array_remove($path, $_SESSION[$this->_id]);
return;
}
}
- PMA_array_write($path, $_SESSION[$this->id], $value);
+ PMA_array_write($path, $_SESSION[$this->_id], $value);
}
/**
@@ -240,6 +255,8 @@ class ConfigFile
* @param mixed $value
* @param mixed $key
* @param mixed $prefix
+ *
+ * @return void
*/
private function _flattenArray($value, $key, $prefix)
{
@@ -260,7 +277,7 @@ class ConfigFile
public function getFlatDefaultConfig()
{
$this->_flattenArrayResult = array();
- array_walk($this->cfg, array($this, '_flattenArray'), '');
+ array_walk($this->_cfg, array($this, '_flattenArray'), '');
$flat_cfg = $this->_flattenArrayResult;
$this->_flattenArrayResult = null;
return $flat_cfg;
@@ -271,6 +288,8 @@ class ConfigFile
* (config will contain differences to defaults from config.defaults.php).
*
* @param array $cfg
+ *
+ * @return void
*/
public function updateWithGlobalConfig(array $cfg)
{
@@ -284,8 +303,8 @@ class ConfigFile
// should be complemented by code reading from generated config
// to perform inverse mapping
foreach ($flat_cfg as $path => $value) {
- if (isset($this->cfgUpdateReadMapping[$path])) {
- $path = $this->cfgUpdateReadMapping[$path];
+ if (isset($this->_cfgUpdateReadMapping[$path])) {
+ $path = $this->_cfgUpdateReadMapping[$path];
}
$this->set($path, $value, $path);
}
@@ -301,7 +320,7 @@ class ConfigFile
*/
public function get($path, $default = null)
{
- return PMA_array_read($path, $_SESSION[$this->id], $default);
+ return PMA_array_read($path, $_SESSION[$this->_id], $default);
}
/**
@@ -316,7 +335,7 @@ class ConfigFile
*/
public function getDefault($canonical_path, $default = null)
{
- return PMA_array_read($canonical_path, $this->cfg, $default);
+ return PMA_array_read($canonical_path, $this->_cfg, $default);
}
/**
@@ -330,7 +349,7 @@ class ConfigFile
*/
public function getValue($path, $default = null)
{
- $v = PMA_array_read($path, $_SESSION[$this->id], null);
+ $v = PMA_array_read($path, $_SESSION[$this->_id], null);
if ($v !== null) {
return $v;
}
@@ -360,7 +379,7 @@ class ConfigFile
*/
public function getDbEntry($path, $default = null)
{
- return PMA_array_read($path, $this->cfgDb, $default);
+ return PMA_array_read($path, $this->_cfgDb, $default);
}
/**
@@ -370,8 +389,8 @@ class ConfigFile
*/
public function getServerCount()
{
- return isset($_SESSION[$this->id]['Servers'])
- ? count($_SESSION[$this->id]['Servers'])
+ return isset($_SESSION[$this->_id]['Servers'])
+ ? count($_SESSION[$this->_id]['Servers'])
: 0;
}
@@ -382,9 +401,9 @@ class ConfigFile
*/
public function getServers()
{
- return isset($_SESSION[$this->id]['Servers'])
- ? $_SESSION[$this->id]['Servers']
- : null;
+ return isset($_SESSION[$this->_id]['Servers'])
+ ? $_SESSION[$this->_id]['Servers']
+ : null;
}
/**
@@ -396,7 +415,7 @@ class ConfigFile
*/
function getServerDSN($server)
{
- if (!isset($_SESSION[$this->id]['Servers'][$server])) {
+ if (!isset($_SESSION[$this->_id]['Servers'][$server])) {
return '';
}
@@ -430,7 +449,7 @@ class ConfigFile
*/
public function getServerName($id)
{
- if (!isset($_SESSION[$this->id]['Servers'][$id])) {
+ if (!isset($_SESSION[$this->_id]['Servers'][$id])) {
return '';
}
$verbose = $this->get("Servers/$id/verbose");
@@ -445,24 +464,26 @@ class ConfigFile
* Removes server
*
* @param int $server
+ *
+ * @return void
*/
public function removeServer($server)
{
- if (!isset($_SESSION[$this->id]['Servers'][$server])) {
+ if (!isset($_SESSION[$this->_id]['Servers'][$server])) {
return;
}
$last_server = $this->getServerCount();
for ($i = $server; $i < $last_server; $i++) {
- $_SESSION[$this->id]['Servers'][$i]
- = $_SESSION[$this->id]['Servers'][$i + 1];
+ $_SESSION[$this->_id]['Servers'][$i]
+ = $_SESSION[$this->_id]['Servers'][$i + 1];
}
- unset($_SESSION[$this->id]['Servers'][$last_server]);
+ unset($_SESSION[$this->_id]['Servers'][$last_server]);
- if (isset($_SESSION[$this->id]['ServerDefault'])
- && $_SESSION[$this->id]['ServerDefault'] >= 0
+ if (isset($_SESSION[$this->_id]['ServerDefault'])
+ && $_SESSION[$this->_id]['ServerDefault'] >= 0
) {
- unset($_SESSION[$this->id]['ServerDefault']);
+ unset($_SESSION[$this->_id]['ServerDefault']);
}
}
@@ -488,8 +509,8 @@ class ConfigFile
*/
public function getConfig()
{
- $c = $_SESSION[$this->id];
- foreach ($this->cfgUpdateReadMapping as $map_to => $map_from) {
+ $c = $_SESSION[$this->_id];
+ foreach ($this->_cfgUpdateReadMapping as $map_to => $map_from) {
PMA_array_write($map_to, $c, PMA_array_read($map_from, $c));
PMA_array_remove($map_from, $c);
}
@@ -504,19 +525,19 @@ class ConfigFile
public function getConfigArray()
{
$this->_flattenArrayResult = array();
- array_walk($_SESSION[$this->id], array($this, '_flattenArray'), '');
+ array_walk($_SESSION[$this->_id], array($this, '_flattenArray'), '');
$c = $this->_flattenArrayResult;
$this->_flattenArrayResult = null;
$persistKeys = array_diff(
- array_keys($this->persistKeys),
+ array_keys($this->_persistKeys),
array_keys($c)
);
foreach ($persistKeys as $k) {
$c[$k] = $this->getDefault($k);
}
- foreach ($this->cfgUpdateReadMapping as $map_to => $map_from) {
+ foreach ($this->_cfgUpdateReadMapping as $map_to => $map_from) {
if (!isset($c[$map_from])) {
continue;
}
diff --git a/libraries/config/Form.class.php b/libraries/config/Form.class.php
index f17c747e30..d82e66b69e 100644
--- a/libraries/config/Form.class.php
+++ b/libraries/config/Form.class.php
@@ -42,7 +42,7 @@ class Form
* Caches field types, indexed by field names
* @var array
*/
- private $fieldsTypes;
+ private $_fieldsTypes;
/**
* Constructor, reads default config values
@@ -67,8 +67,8 @@ class Form
public function getOptionType($option_name)
{
$key = ltrim(substr($option_name, strrpos($option_name, '/')), '/');
- return isset($this->fieldsTypes[$key])
- ? $this->fieldsTypes[$key]
+ return isset($this->_fieldsTypes[$key])
+ ? $this->_fieldsTypes[$key]
: null;
}
@@ -169,7 +169,7 @@ class Form
}
/**
- * Reads fields' types to $this->fieldsTypes
+ * Reads fields' types to $this->_fieldsTypes
*
* @return void
*/
@@ -178,7 +178,7 @@ class Form
$cf = ConfigFile::getInstance();
foreach ($this->fields as $name => $path) {
if (strpos($name, ':group:') === 0) {
- $this->fieldsTypes[$name] = 'group';
+ $this->_fieldsTypes[$name] = 'group';
continue;
}
$v = $cf->getDbEntry($path);
@@ -187,7 +187,7 @@ class Form
} else {
$type = gettype($cf->getDefault($path));
}
- $this->fieldsTypes[$name] = $type;
+ $this->_fieldsTypes[$name] = $type;
}
}
diff --git a/libraries/config/FormDisplay.class.php b/libraries/config/FormDisplay.class.php
index 6902dc235b..09bfd753f0 100644
--- a/libraries/config/FormDisplay.class.php
+++ b/libraries/config/FormDisplay.class.php
@@ -22,6 +22,8 @@ require_once './libraries/js_escape.lib.php';
/**
* Form management class, displays and processes forms
+ *
+ * @package PhpMyAdmin
*/
class FormDisplay
{
@@ -29,7 +31,7 @@ class FormDisplay
* Form list
* @var Form[]
*/
- private $forms = array();
+ private $_forms = array();
/**
* Stores validation errors, indexed by paths
@@ -37,49 +39,52 @@ class FormDisplay
* [path] is a string storing error associated with single field
* @var array
*/
- private $errors = array();
+ private $_errors = array();
/**
* Paths changed so that they can be used as HTML ids, indexed by paths
* @var array
*/
- private $translated_paths = array();
+ private $_translated_paths = array();
/**
* Server paths change indexes so we define maps from current server
* path to the first one, indexed by work path
* @var array
*/
- private $system_paths = array();
+ private $_system_paths = array();
/**
* Language strings which will be sent to PMA_messages JS variable
* Will be looked up in $GLOBALS: str{value} or strSetup{value}
* @var array
*/
- private $js_lang_strings = array();
+ private $_js_lang_strings = array();
/**
* Tells whether forms have been validated
* @var bool
*/
- private $is_validated = true;
+ private $_is_validated = true;
/**
* Dictionary with user preferences keys
* @var array
*/
- private $userprefs_keys;
+ private $_userprefs_keys;
/**
* Dictionary with disallowed user preferences keys
* @var array
*/
- private $userprefs_disallow;
+ private $_userprefs_disallow;
+ /**
+ * Constructor
+ */
public function __construct()
{
- $this->js_lang_strings = array(
+ $this->_js_lang_strings = array(
'error_nan_p' => __('Not a positive number'),
'error_nan_nneg' => __('Not a non-negative number'),
'error_incorrect_port' => __('Not a valid port number'),
@@ -95,17 +100,19 @@ class FormDisplay
* @param string $form_name
* @param array $form
* @param int $server_id 0 if new server, validation; >= 1 if editing a server
+ *
+ * @return void
*/
public function registerForm($form_name, array $form, $server_id = null)
{
- $this->forms[$form_name] = new Form($form_name, $form, $server_id);
- $this->is_validated = false;
- foreach ($this->forms[$form_name]->fields as $path) {
+ $this->_forms[$form_name] = new Form($form_name, $form, $server_id);
+ $this->_is_validated = false;
+ foreach ($this->_forms[$form_name]->fields as $path) {
$work_path = $server_id === null
? $path
: str_replace('Servers/1/', "Servers/$server_id/", $path);
- $this->system_paths[$work_path] = $path;
- $this->translated_paths[$work_path] = str_replace('/', '-', $work_path);
+ $this->_system_paths[$work_path] = $path;
+ $this->_translated_paths[$work_path] = str_replace('/', '-', $work_path);
}
}
@@ -125,8 +132,8 @@ class FormDisplay
}
// save forms
- if (count($this->forms) > 0) {
- return $this->save(array_keys($this->forms), $allow_partial_save);
+ if (count($this->_forms) > 0) {
+ return $this->save(array_keys($this->_forms), $allow_partial_save);
}
return false;
}
@@ -138,19 +145,19 @@ class FormDisplay
*/
private function _validate()
{
- if ($this->is_validated) {
+ if ($this->_is_validated) {
return;
}
$cf = ConfigFile::getInstance();
$paths = array();
$values = array();
- foreach ($this->forms as $form) {
+ foreach ($this->_forms as $form) {
/* @var $form Form */
$paths[] = $form->name;
// collect values and paths
foreach ($form->fields as $path) {
- $work_path = array_search($path, $this->system_paths);
+ $work_path = array_search($path, $this->_system_paths);
$values[$path] = $cf->getValue($work_path);
$paths[] = $path;
}
@@ -161,18 +168,18 @@ class FormDisplay
// change error keys from canonical paths to work paths
if (is_array($errors) && count($errors) > 0) {
- $this->errors = array();
+ $this->_errors = array();
foreach ($errors as $path => $error_list) {
- $work_path = array_search($path, $this->system_paths);
+ $work_path = array_search($path, $this->_system_paths);
// field error
if (!$work_path) {
// form error, fix path
$work_path = $path;
}
- $this->errors[$work_path] = $error_list;
+ $this->_errors[$work_path] = $error_list;
}
}
- $this->is_validated = true;
+ $this->_is_validated = true;
}
/**
@@ -189,14 +196,14 @@ class FormDisplay
$js = array();
$js_default = array();
- $tabbed_form = $tabbed_form && (count($this->forms) > 1);
+ $tabbed_form = $tabbed_form && (count($this->_forms) > 1);
$validators = PMA_config_get_validators();
display_form_top();
if ($tabbed_form) {
$tabs = array();
- foreach ($this->forms as $form) {
+ foreach ($this->_forms as $form) {
$tabs[$form->name] = PMA_lang("Form_$form->name");
}
display_tabs_top($tabs);
@@ -204,7 +211,7 @@ class FormDisplay
// valdiate only when we aren't displaying a "new server" form
$is_new_server = false;
- foreach ($this->forms as $form) {
+ foreach ($this->_forms as $form) {
/* @var $form Form */
if ($form->index === 0) {
$is_new_server = true;
@@ -219,13 +226,13 @@ class FormDisplay
$this->_loadUserprefsInfo();
// display forms
- foreach ($this->forms as $form) {
+ foreach ($this->_forms as $form) {
/* @var $form Form */
$form_desc = isset($GLOBALS["strConfigForm_{$form->name}_desc"])
? PMA_lang("Form_{$form->name}_desc")
: '';
- $form_errors = isset($this->errors[$form->name])
- ? $this->errors[$form->name] : null;
+ $form_errors = isset($this->_errors[$form->name])
+ ? $this->_errors[$form->name] : null;
display_fieldset_top(
PMA_lang("Form_$form->name"),
$form_desc,
@@ -234,12 +241,12 @@ class FormDisplay
);
foreach ($form->fields as $field => $path) {
- $work_path = array_search($path, $this->system_paths);
- $translated_path = $this->translated_paths[$work_path];
+ $work_path = array_search($path, $this->_system_paths);
+ $translated_path = $this->_translated_paths[$work_path];
// always true/false for user preferences display
// otherwise null
- $userprefs_allow = isset($this->userprefs_keys[$path])
- ? !isset($this->userprefs_disallow[$path])
+ $userprefs_allow = isset($this->_userprefs_keys[$path])
+ ? !isset($this->_userprefs_disallow[$path])
: null;
// display input
$this->_displayFieldInput(
@@ -269,7 +276,7 @@ class FormDisplay
if (!$js_lang_sent) {
$js_lang_sent = true;
$js_lang = array();
- foreach ($this->js_lang_strings as $strName => $strValue) {
+ foreach ($this->_js_lang_strings as $strName => $strValue) {
$js_lang[] = "'$strName': '" . PMA_jsFormat($strValue, false) . '\'';
}
$js[] = "$.extend(PMA_messages, {\n\t" . implode(",\n\t", $js_lang) . '})';
@@ -324,8 +331,8 @@ class FormDisplay
$opts['setvalue'] = $form->default[$system_path];
}
- if (isset($this->errors[$work_path])) {
- $opts['errors'] = $this->errors[$work_path];
+ if (isset($this->_errors[$work_path])) {
+ $opts['errors'] = $this->_errors[$work_path];
}
switch ($form->getOptionType($field)) {
case 'string':
@@ -411,13 +418,13 @@ class FormDisplay
public function displayErrors()
{
$this->_validate();
- if (count($this->errors) == 0) {
+ if (count($this->_errors) == 0) {
return;
}
- foreach ($this->errors as $system_path => $error_list) {
- if (isset($this->system_paths[$system_path])) {
- $path = $this->system_paths[$system_path];
+ foreach ($this->_errors as $system_path => $error_list) {
+ if (isset($this->_system_paths[$system_path])) {
+ $path = $this->_system_paths[$system_path];
$name = PMA_lang_name($path);
} else {
$name = $GLOBALS["strConfigForm_$system_path"];
@@ -434,16 +441,16 @@ class FormDisplay
public function fixErrors()
{
$this->_validate();
- if (count($this->errors) == 0) {
+ if (count($this->_errors) == 0) {
return;
}
$cf = ConfigFile::getInstance();
- foreach (array_keys($this->errors) as $work_path) {
- if (!isset($this->system_paths[$work_path])) {
+ foreach (array_keys($this->_errors) as $work_path) {
+ if (!isset($this->_system_paths[$work_path])) {
continue;
}
- $canonical_path = $this->system_paths[$work_path];
+ $canonical_path = $this->_system_paths[$work_path];
$cf->set($work_path, $cf->getDefault($canonical_path));
}
}
@@ -500,11 +507,11 @@ class FormDisplay
$this->_loadUserprefsInfo();
}
- $this->errors = array();
+ $this->_errors = array();
foreach ($forms as $form_name) {
/* @var $form Form */
- if (isset($this->forms[$form_name])) {
- $form = $this->forms[$form_name];
+ if (isset($this->_forms[$form_name])) {
+ $form = $this->_forms[$form_name];
} else {
continue;
}
@@ -514,8 +521,8 @@ class FormDisplay
: false;
// grab POST values
foreach ($form->fields as $field => $system_path) {
- $work_path = array_search($system_path, $this->system_paths);
- $key = $this->translated_paths[$work_path];
+ $work_path = array_search($system_path, $this->_system_paths);
+ $key = $this->_translated_paths[$work_path];
$type = $form->getOptionType($field);
// skip groups
@@ -529,7 +536,7 @@ class FormDisplay
if ($type == 'boolean') {
$_POST[$key] = false;
} else {
- $this->errors[$form->name][] = sprintf(
+ $this->_errors[$form->name][] = sprintf(
__('Missing data for %s'),
'' . PMA_lang_name($system_path) . ' '
);
@@ -539,13 +546,15 @@ class FormDisplay
}
// user preferences allow/disallow
- if ($is_setup_script && isset($this->userprefs_keys[$system_path])) {
- if (isset($this->userprefs_disallow[$system_path])
+ if ($is_setup_script
+ && isset($this->_userprefs_keys[$system_path])
+ ) {
+ if (isset($this->_userprefs_disallow[$system_path])
&& isset($_POST[$key . '-userprefs-allow'])
) {
- unset($this->userprefs_disallow[$system_path]);
+ unset($this->_userprefs_disallow[$system_path]);
} else if (!isset($_POST[$key . '-userprefs-allow'])) {
- $this->userprefs_disallow[$system_path] = true;
+ $this->_userprefs_disallow[$system_path] = true;
}
}
@@ -574,7 +583,7 @@ class FormDisplay
$form->getOptionValueList($system_path)
);
if (! $successfully_validated) {
- $this->errors[$work_path][] = __('Incorrect value');
+ $this->_errors[$work_path][] = __('Incorrect value');
$result = false;
continue;
}
@@ -611,7 +620,7 @@ class FormDisplay
}
// save forms
- if ($allow_partial_save || empty($this->errors)) {
+ if ($allow_partial_save || empty($this->_errors)) {
foreach ($to_save as $work_path => $path) {
// TrustedProxies requires changes before saving
if ($path == 'TrustedProxies') {
@@ -637,7 +646,10 @@ class FormDisplay
$cf->set($work_path, $values[$path], $path);
}
if ($is_setup_script) {
- $cf->set('UserprefsDisallow', array_keys($this->userprefs_disallow));
+ $cf->set(
+ 'UserprefsDisallow',
+ array_keys($this->_userprefs_disallow)
+ );
}
}
@@ -654,7 +666,7 @@ class FormDisplay
*/
public function hasErrors()
{
- return count($this->errors) > 0;
+ return count($this->_errors) > 0;
}
@@ -722,13 +734,13 @@ class FormDisplay
*/
private function _loadUserprefsInfo()
{
- if ($this->userprefs_keys === null) {
- $this->userprefs_keys = array_flip(PMA_read_userprefs_fieldnames());
+ if ($this->_userprefs_keys === null) {
+ $this->_userprefs_keys = array_flip(PMA_read_userprefs_fieldnames());
// read real config for user preferences display
$userprefs_disallow = defined('PMA_SETUP')
? ConfigFile::getInstance()->get('UserprefsDisallow', array())
: $GLOBALS['cfg']['UserprefsDisallow'];
- $this->userprefs_disallow = array_flip($userprefs_disallow);
+ $this->_userprefs_disallow = array_flip($userprefs_disallow);
}
}
diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php
index 61d1698bea..8f3a7df878 100644
--- a/libraries/config/messages.inc.php
+++ b/libraries/config/messages.inc.php
@@ -278,6 +278,7 @@ $strConfigLeftDisplayLogo_name = __('Display logo');
$strConfigLeftDisplayServers_desc = __('Display server choice at the top of the left frame');
$strConfigLeftDisplayServers_name = __('Display servers selection');
$strConfigLeftDisplayTableFilterMinimum_name = __('Minimum number of tables to display the table filter box');
+$strConfigLeftDisplayDatabaseFilterMinimum_name = __('Minimum number of databases to display the database filter box');
$strConfigLeftFrameDBSeparator_desc = __('String that separates databases into different tree levels');
$strConfigLeftFrameDBSeparator_name = __('Database tree separator');
$strConfigLeftFrameDBTree_desc = __('Only light version; display databases in a tree (determined by the separator defined below)');
diff --git a/libraries/config/user_preferences.forms.php b/libraries/config/user_preferences.forms.php
index 600099cf4b..308a222c73 100644
--- a/libraries/config/user_preferences.forms.php
+++ b/libraries/config/user_preferences.forms.php
@@ -84,6 +84,7 @@ $forms['Left_frame']['Left_frame'] = array(
'LeftPointerEnable',
'LeftRecentTable');
$forms['Left_frame']['Left_databases'] = array(
+ 'LeftDisplayDatabaseFilterMinimum',
'DisplayDatabasesList',
'LeftFrameDBTree',
'LeftFrameDBSeparator',
diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php
index f1e99cf3ac..c9684bcaa1 100644
--- a/libraries/database_interface.lib.php
+++ b/libraries/database_interface.lib.php
@@ -515,7 +515,32 @@ function PMA_DBI_get_tables_full($database, $table = false,
. PMA_backquote($each_database);
}
- $each_tables = PMA_DBI_fetch_result($sql, 'Name', null, $link);
+ $useStatusCache = false;
+
+ if (extension_loaded('apc')
+ && isset($GLOBALS['cfg']['Server']['StatusCacheDatabases'])
+ && ! empty($GLOBALS['cfg']['Server']['StatusCacheLifetime'])) {
+ $statusCacheDatabases = (array) $GLOBALS['cfg']['Server']['StatusCacheDatabases'];
+ if (in_array($each_database, $statusCacheDatabases)) {
+ $useStatusCache = true;
+ }
+ }
+
+ $each_tables = null;
+
+ if ($useStatusCache) {
+ $cacheKey = 'phpMyAdmin_tableStatus_' . sha1($GLOBALS['cfg']['Server']['host'] . '_' . $sql);
+
+ $each_tables = apc_fetch($cacheKey);
+ }
+
+ if (!$each_tables) {
+ $each_tables = PMA_DBI_fetch_result($sql, 'Name', null, $link);
+ }
+
+ if ($useStatusCache) {
+ apc_store($cacheKey, $each_tables, $GLOBALS['cfg']['Server']['StatusCacheLifetime']);
+ }
// Sort naturally if the config allows it and we're sorting
// the Name column.
diff --git a/navigation.php b/navigation.php
index 46f68af7da..7694ae5d2a 100644
--- a/navigation.php
+++ b/navigation.php
@@ -201,8 +201,19 @@ if (! $GLOBALS['server']) {
.'' . "\n"
. '' . "\n";
} else {
+
+ if (count($GLOBALS['pma']->databases) >= $GLOBALS['cfg']['LeftDisplayDatabaseFilterMinimum']) {
+ ?>
+
+ X
+
+
+ databases->getHtmlListGrouped(true, $_SESSION['tmp_user_values']['navi_limit_offset'], $GLOBALS['cfg']['MaxDbList']) . "\n";
}
+
$_url_params = array('pos' => $pos);
PMA_listNavigator(count($GLOBALS['pma']->databases), $pos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxDbList']);
}
diff --git a/po/af.po b/po/af.po
index 5ae78925b9..66348e94e9 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-03-30 23:04+0200\n"
-"Last-Translator: Michal \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:17+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: afrikaans \n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Wys alles"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Bladsy nommer:"
@@ -36,30 +36,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Soek"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -69,7 +69,7 @@ msgstr "Soek"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Gaan"
@@ -109,8 +109,8 @@ msgid "Database comment: "
msgstr "Tabel kommentaar"
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tabel kommentaar"
@@ -121,16 +121,16 @@ msgstr "Tabel kommentaar"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Kolom name"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "Kolom name"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tipe"
@@ -155,9 +155,9 @@ msgstr "Tipe"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +167,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Verstekwaarde (default)"
@@ -176,18 +176,18 @@ msgstr "Verstekwaarde (default)"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Skakels na"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Kommentaar"
@@ -198,11 +198,11 @@ msgstr "Kommentaar"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "Nee"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "Ja"
msgid "View dump (schema) of database"
msgstr "Sien die storting (skema) van die databasis"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Geen tabelle in databasis gevind nie."
@@ -326,8 +326,8 @@ msgstr ""
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -352,8 +352,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Vertoon PDF skema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -363,46 +363,45 @@ msgstr "Vertoon PDF skema"
msgid "Table"
msgstr "Tabel"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rye"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Grootte"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "in gebruik"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
#, fuzzy
msgid "Creation"
msgstr "Skep"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr ""
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr ""
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -496,13 +495,13 @@ msgstr "Gebruik Tabelle"
msgid "SQL query on database %s :"
msgstr "SQL-navraag op databasis %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Doen Navraag"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Toegang Geweier"
@@ -537,8 +536,8 @@ msgstr[0] "%s resultate binne tabel %s "
msgstr[1] "%s resultate binne tabel %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Beloer Data"
@@ -624,11 +623,11 @@ msgstr "Veld %s is verwyder"
msgid "Table %s has been dropped"
msgstr "Tabel %s is verwyder"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -640,7 +639,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -685,7 +684,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -694,17 +693,18 @@ msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Drukker mooi (print view)"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Maak Leeg"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -751,15 +751,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Databasis"
@@ -778,7 +777,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -980,13 +979,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Die boekmerk is verwyder."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1009,7 +1008,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1031,8 +1030,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1150,9 +1149,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Verander"
@@ -1179,7 +1178,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
#, fuzzy
msgid "Total"
@@ -1191,12 +1190,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1284,13 +1283,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1350,27 +1349,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1415,9 +1414,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Geen"
@@ -1602,7 +1601,7 @@ msgstr "Verduidelik SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1953,7 +1952,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1969,7 +1968,7 @@ msgstr "SQL-stelling"
msgid "Show search criteria"
msgstr "SQL-stelling"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2154,7 +2153,7 @@ msgstr "Verander wagwoord"
msgid "More"
msgstr "Ma"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2261,27 +2260,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2289,37 +2288,37 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Des"
@@ -2368,32 +2367,32 @@ msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sa"
@@ -2552,11 +2551,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2564,47 +2563,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2618,7 +2617,7 @@ msgstr "Geen indeks gedefinieer!"
msgid "Indexes"
msgstr "Indekse"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2655,46 +2654,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "databasisse"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktuur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Voeg by"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operasies"
@@ -2776,27 +2775,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fout"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2840,51 +2839,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Soek in databasis"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "Soek in databasis"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabel %s is vernoem na %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2892,16 +2891,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2953,7 +2952,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2994,12 +2993,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Bediener weergawe"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3010,7 +3009,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Bediener weergawe"
@@ -3027,7 +3026,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3040,7 +3039,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3138,76 +3137,76 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Skep 'n nuwe indeks"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Lyne beeindig deur"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
msgctxt "spatial types"
msgid "Spatial"
msgstr "totaal"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3275,20 +3274,20 @@ msgstr "Bediener Keuse"
msgid "Cookies must be enabled past this point."
msgstr "HTTP Koekies moet van nou af geaktifeer wees."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3333,18 +3332,18 @@ msgstr "Tabel"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overhead"
@@ -3455,8 +3454,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-stelling"
@@ -3466,81 +3465,81 @@ msgstr "SQL-stelling"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL het gepraat: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Verduidelik SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Ignoreer SQL Verduideliking"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Sonder PHP Kode"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Skep PHP Kode"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Ignoreer SQL Validasie"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Valideer SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "So"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3548,7 +3547,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3557,7 +3556,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Vorige"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3566,7 +3565,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Volgende"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3574,44 +3573,44 @@ msgctxt "Last page"
msgid "End"
msgstr "Einde"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr ""
@@ -3704,70 +3703,70 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Skakel nie gevind nie"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3786,7 +3785,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4072,7 +4071,7 @@ msgid "Character set of the file"
msgstr "Karakterstel van die leer:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formaat"
@@ -4179,7 +4178,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4311,8 +4310,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV data"
@@ -4742,110 +4741,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analiseer tabel"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4853,443 +4856,443 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Verander tabel sorteer volgens"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Hernoem tabel na"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Enige gasheer (host)"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Geen tabelle"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Geen databasisse"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5298,370 +5301,370 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Databasis"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiseer tabel"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Herstel tabel"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Bediener Keuse"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Kolom Kommentaar word vertoon"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Stellings"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "Bediener weergawe"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Wys PHP informasie"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Databasis statistieke"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Wys tabelle"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Wys ruitgebied"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL-stelling"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Ry Statistiek"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5669,28 +5672,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5700,81 +5703,81 @@ msgstr ""
msgid "Password"
msgstr "Wagwoord"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Gebruiker Naam:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Verstekwaarde (default)"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5782,59 +5785,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5855,83 +5858,83 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
msgid "Database export options"
msgstr "Databasis statistieke"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV vir M$ Excel data"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5951,21 +5954,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6030,7 +6033,7 @@ msgstr "Skep 'n nuwe bladsy"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Naam"
@@ -6209,25 +6212,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Bediener weergawe"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Bediener weergawe"
@@ -6930,18 +6933,17 @@ msgid "Display MIME types"
msgstr "Vertoon Funksies"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Gasheer (host)"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Generasie Tyd"
@@ -7148,15 +7150,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL resultaat"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Voortgebring deur"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL het niks teruggegee nie (dus nul rye)."
@@ -7251,7 +7245,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7610,7 +7604,7 @@ msgstr "Skepping van PDF's"
msgid "Displaying Column Comments"
msgstr "Kolom Kommentaar word vertoon"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7708,10 +7702,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Waarde"
@@ -7770,7 +7764,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7808,8 +7802,8 @@ msgid "Edit event"
msgstr "Voeg 'n nuwe gebruiker by"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7868,7 +7862,7 @@ msgstr "Voltooi invoegings"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7923,7 +7917,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8002,57 +7996,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funksie"
@@ -8248,7 +8242,7 @@ msgstr "Tabel kommentaar"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Kenmerke"
@@ -8353,12 +8347,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8406,7 +8400,7 @@ msgstr "Hardloop SQL stellings op databasis %s"
msgid "Run SQL query/queries on database %s"
msgstr "Hardloop SQL stellings op databasis %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8417,11 +8411,11 @@ msgstr ""
msgid "Columns"
msgstr "Kolom name"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Boekmerk hierdie SQL-stelling"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8439,7 +8433,7 @@ msgstr ""
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Wys hierdie navraag weer hier "
+msgstr "Wys hierdie navraag weer hier"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8521,12 +8515,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8544,36 +8538,36 @@ msgstr ""
"a single quote (\"'\") amongst those values, backslashes it (for example '\\"
"\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
#, fuzzy
msgid ""
"Please enter the values for transformation options using this format: 'a', "
@@ -8586,79 +8580,79 @@ msgstr ""
"a single quote (\"'\") amongst those values, backslashes it (for example '\\"
"\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Geen"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primere"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Volteks"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Na %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Voeg 'n nuwe veld by"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Jy moet ten minste een Kolom kies om te vertoon"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "Operasies"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Soek"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8786,11 +8780,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8800,8 +8794,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8971,19 +8965,25 @@ msgstr ""
msgid "No databases"
msgstr "Geen databasisse"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Verander tabel sorteer volgens"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Verander tabel sorteer volgens"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Skep 'n nuwe bladsy"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Kies asb. 'n databasis"
@@ -9584,7 +9584,7 @@ msgstr ""
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Nota: MySQL regte name word in Engels vertoon "
+msgstr "Nota: MySQL regte name word in Engels vertoon"
#: server_privileges.php:711
msgid "Administration"
@@ -10144,7 +10144,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Stellings"
@@ -11253,37 +11253,37 @@ msgstr ""
msgid "Show form"
msgstr "Wys kleur"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11292,39 +11292,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11332,21 +11332,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11355,7 +11355,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11365,37 +11365,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11405,8 +11405,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Geen databasisse"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11440,21 +11440,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Valideer SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL resultaat"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Voortgebring deur"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etiket"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11588,7 +11596,7 @@ msgstr "Waarde"
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Tabel %s is verwyder"
@@ -11805,45 +11813,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Toets referential integrity:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Wys tabelle"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Spasie verbruik"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Gebruik"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effektief"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Ry Statistiek"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamies"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Ry lengte"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Ry grootte "
+msgstr "Ry grootte"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12145,30 +12153,30 @@ msgstr ""
msgid "Create version"
msgstr "Bediener weergawe"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL-stelling"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 56f4432e87..08b9dc627b 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2011-09-24 21:48+0200\n"
"Last-Translator: Abdullah Al-Saedi \n"
"Language-Team: arabic \n"
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "عرض الكل"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "صفحة رقم:"
@@ -39,30 +39,30 @@ msgstr ""
"مستعرضك يمنع التحديث عبر النوافذ بسبب إعدادات الأمان."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "بحث"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "بحث"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "تنفيذ"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "ملاحظة قاعدة البيانات: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "تعليقات الجدول"
@@ -124,14 +124,14 @@ msgstr "تعليقات الجدول"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "عمود"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "عمود"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "نوع"
@@ -156,9 +156,9 @@ msgstr "نوع"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "خالي"
@@ -168,7 +168,7 @@ msgstr "خالي"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "إفتراضي"
@@ -177,18 +177,18 @@ msgstr "إفتراضي"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "مرتبط بـ"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "تعليقات"
@@ -199,11 +199,11 @@ msgstr "تعليقات"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "لا"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "نعم"
msgid "View dump (schema) of database"
msgstr "عرض بنية قاعدة البيانات"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "لا توجد جداول في قاعدة البيانات هذه!."
@@ -324,8 +324,8 @@ msgstr "التبديل إلى قاعدة البيانات المنسوخة"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "بناء الارتباطات"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "بناء الارتباطات"
msgid "Table"
msgstr "جدول"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "صفوف"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "حجم"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "قيد الإستعمال"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "الإنشاء"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "التحديث الأخير"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "التحقق الأخير"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -487,13 +486,13 @@ msgstr "إستخدم الجداول"
msgid "SQL query on database %s :"
msgstr "إستعلام SQL في قاعدة البيانات %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "إرسال الإستعلام"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "ممنوع الوصول"
@@ -533,8 +532,8 @@ msgstr[4] "%s مطابقة في الجدول %s "
msgstr[5] "%s مطابقة في الجدول %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "استعراض"
@@ -614,11 +613,11 @@ msgstr "تم إزالة %s من العرض"
msgid "Table %s has been dropped"
msgstr "تم إزالة الجدول %s"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "التتبع نشط."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "التتبع غير نشط."
@@ -630,7 +629,7 @@ msgid ""
msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "عرض"
@@ -675,7 +674,7 @@ msgstr "تحقق من الجداول التي تحمل عبء زائد"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -684,17 +683,18 @@ msgid "Export"
msgstr "تصدير"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "عرض نسخة للطباعة"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "إفراغ"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -737,15 +737,14 @@ msgid "Tracked tables"
msgstr "الجداول المتعقبة"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "قاعدة البيانات"
@@ -763,7 +762,7 @@ msgstr "محدث"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "الحالة"
@@ -954,13 +953,13 @@ msgstr "عرض العلامة المرجعية"
msgid "The bookmark has been deleted."
msgstr "لقد حذفت العلامة المرجعية."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "لا يمكن قراءة الملف"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -985,7 +984,7 @@ msgstr "لاتستطيع تغيير ترميز الملفات بدون مكتب
msgid "Could not load import plugins, please check your installation!"
msgstr "لايمكن تحميل الإضافات المستوردة ,, فضلاً تحقق من عملية التنصيب ."
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "تم إنشاء العلامة المرجعية %s"
@@ -1011,8 +1010,8 @@ msgstr ""
"لم يتم تحليل البيانات في العملية الأخيرة ,, هذا يعني ان phpMyAdmin لاتستطيع "
"إنهاء الإستيراد ,, يجب زيادة المدة المحددة لتنفيذ php"
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1127,9 +1126,9 @@ msgid "Close"
msgstr "أغلاق"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "تعديل"
@@ -1153,7 +1152,7 @@ msgstr "بيانات ثابتة"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "مجموع كلي"
@@ -1164,12 +1163,12 @@ msgid "Other"
msgstr "آخر"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1254,13 +1253,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "ميجابايت"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "كيلوبايت"
@@ -1322,27 +1321,27 @@ msgid "Connections"
msgstr "اتصالات"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "بايت"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "جيجابايت"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "تيرابايت"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "بيتابايت"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "إكسابايت"
@@ -1384,9 +1383,9 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "لا شيء"
@@ -1570,7 +1569,7 @@ msgstr "شرح SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "وقت"
@@ -1903,7 +1902,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1917,7 +1916,7 @@ msgstr "إخفاء معايير البحث"
msgid "Show search criteria"
msgstr "إظهار معايير البحث"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "بحث"
@@ -2091,7 +2090,7 @@ msgstr "تغيير كلمة المرور"
msgid "More"
msgstr "أكثر"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2178,63 +2177,63 @@ msgid "December"
msgstr "ديسمبر"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "يناير"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "فبراير"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "أبريل"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "مايو"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "يونيو"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "يوليو"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "أغسطس"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "سبتمبر"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "أكتوبر"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "نوفمبر"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "ديسمبر"
@@ -2272,32 +2271,32 @@ msgid "Sun"
msgstr "الأحد"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "الإثنين"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "الثلاثاء"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "الأربعاء"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "الخميس"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "الجمعة"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "السبت"
@@ -2439,11 +2438,11 @@ msgstr "ملف الإعدادت (%s) غير قابل للقراءة."
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "صلاحيات خاطئة على ملف الإعدادات , لاينبغى أن يكون قابل للكتابة!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "حجم الخط"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2451,37 +2450,37 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr "الملف لم يكن مرفوعاً."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "حجم الملف المرفوع يتجاوز حجم الملف المسموح به في إعدادات php"
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "حجم الملف المرفوع يتجاوز حجم الملف المحدد به في نموذج HTML"
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "تم رفع جزء من الملف فقط."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "المجلد المؤقت مفقود."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "فشلت عملية كتابة الملف على القرص."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "رفع الملف إستوقف من قبل الامتداد."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "خطأ غير معروف عند رفع الملف."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2489,11 +2488,11 @@ msgstr ""
"خطأ عند نقل الملف المرفوع , إنظر :[a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "خطأ عند نقل الملف المرفوع."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "لايمكن قراءة الملف المرفوع."
@@ -2507,7 +2506,7 @@ msgstr "لم يتم تعريف الفهرس!"
msgid "Indexes"
msgstr "فهارس"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2543,46 +2542,46 @@ msgid ""
"removed."
msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "قاعدة بيانات"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "خادم"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "بناء"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "إدخال"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "عمليات"
@@ -2663,13 +2662,13 @@ msgstr ""
msgid "Engines"
msgstr "محركات"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "خطأ"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2680,7 +2679,7 @@ msgstr[3] "%1$d صفوف تأثرت"
msgstr[4] "%1$d صفوف تأثرت"
msgstr[5] "%1$d صفوف تأثرت"
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2691,7 +2690,7 @@ msgstr[3] "%1$d صفوف حذفت"
msgstr[4] "%1$d صفوف حذفت"
msgstr[5] "%1$d صفوف حذفت"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2738,52 +2737,52 @@ msgstr "%s معطل في خادم MySQL هذا."
msgid "This MySQL server does not support the %s storage engine."
msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "حالة الجدول غير معروفة:"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "المظهر %s غير موجود!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "قاعدة البيانات غير صالحة"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "اسم الجدول غير صالح"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "تم إعادة تسمية الجدول %s إلى %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "لا يمكن حفظ تفضيلات جدول UI"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2791,16 +2790,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "مسار الصورة للمظهر %s غير صحيح!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "لاتتوفر معاينة."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "إعتبر"
@@ -2852,7 +2851,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2893,13 +2892,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "انشئ إصدار %s لـ %s.s%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2910,7 +2909,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2928,7 +2927,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2941,7 +2940,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3040,77 +3039,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "تصميم فهرسه جديده"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "منحنى"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "مجموع كلي"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3181,21 +3180,21 @@ msgstr "اختيار الخادم"
msgid "Cookies must be enabled past this point."
msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"تم منع الدخول بدون كلمة مرور ممنوع في الإعدادات , إنظر قيمة (AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "لانشاط منذ %s ثواني , الرجاء تسجيل الدخول من جديد"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "لا يمكن الدخول إلى خادم MySQL"
@@ -3239,18 +3238,18 @@ msgstr "جداول"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "بيانات"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "الحمل الزائد"
@@ -3359,8 +3358,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "إنجليزي"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "استعلام SQL"
@@ -3370,144 +3369,144 @@ msgstr "استعلام SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL قال: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "فشل الإتصال بمدقق SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "شرح SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "تخطي شرح SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "بدون كود PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "أنشئ كود PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "تحديث"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "تخطي تدقيق SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "التدقيق في استعلام SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "تعديل سريع لهذا الإستعلام"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "مضمن"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "جانبي"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "الأحد"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y الساعة %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "مدخلات مفقودة:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "بداية"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "سابق"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "التالي"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "نهاية"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "الذهاب إلى قاعدة البيانات "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "إضغط للإختيار"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "تصفح كمبيوترك."
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "إختر مجلد الرفع من الخادم %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه."
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "لايوجد أي ملفات لرفعها"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "تنفيذ"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "طباعة"
@@ -3591,68 +3590,68 @@ msgstr "كلاهما"
msgid "neither of the above"
msgstr "لاشيء منهم"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "ليس عدد موجب"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "ليس عدد غير سالب"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "رقم منفذ غير صحيح"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "قيمة غير صحيحة"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "القيمة يجب أن تساوي أو أقل من %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "بيانات مفقودة لـ %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "غير متاح"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "%s يتطلب الإمتداد %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "الإستيراد لن يتم , الدالة (%s) مفقودة"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "التصدير لن يتم , الدالة (%s) مفقودة"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "مدقق SQL معطل"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "الإمتداد SOAP غير موجود"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "أقصى %s"
@@ -3671,7 +3670,7 @@ msgid "Set value: %s"
msgstr "تعيين القيمة: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "إستعادة القيمة الإفتراضية"
@@ -3961,7 +3960,7 @@ msgid "Character set of the file"
msgstr "مجموعة الأحرف للملف"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "صيغة"
@@ -4060,7 +4059,7 @@ msgstr "Label key"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "نوع MIME"
@@ -4182,8 +4181,8 @@ msgstr "تخصيص الخيارات الإفتراضية"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "سي إس في"
@@ -4601,52 +4600,58 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "فاصل شجرة قاعدة البيانات"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "عرض قواعد البيانات في شجرة"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "تعطيل هذا إذا كنت تريد رؤية قواعد البيانات كلٌ على حدا"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "إستخدم نسخة light"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "أقصى عمق لشجرة الجدول"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "فاصل شجرة الجدول"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "إعمل رابط للمكان الذي يشير اليه الشعار"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "رابط الشعار"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4654,57 +4659,57 @@ msgstr ""
"فتح الصفحة المرتبطة في النافذة الرئيسية ([kbd]main[/kbd]) أو في نافذة جديدة "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "هدف رابط الشعار"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "توضيح الخادم تحت مؤشر الفأرة"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "تفعيل التوضيح (highlighting)"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "الجداول المستعملة مؤخراً"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "حد أحرف العمود"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "حذف كل الكوكيز عند الخروج"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr "تعريف ما إذا كان سوف يتذكر تسجيل الدخول الأخير من تحقق الكوكيز أم لا"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "تذكر إسم المستخدم"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4712,436 +4717,436 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "تحديد كم المدة التي يبقى فيها الكوكيز"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "صلاحية دخول الكوكيز"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "مضاعفة حجم مربع النص لأعمدة LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "مربع نص أكبر لـ LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "المستخدمين لايمكنهم وضع قيمة أكبر"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "قواعد بيانات أكبر"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "جداول أكبر"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "تحذير mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "حدود الذاكرة"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "هذه هي روابط التعديل والنسخ والحذف"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "ترتيب طبيعي"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "إستخدم الأيقونات او النصوص فقط , أو الإثنان"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "الترتيب الإفتراضي"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "الإتصالات الثابتة"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "منع تعديل الأعمدة من نوع BLOB و BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "حماية الأعمدة من نوع BINARY"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "عدد الإستعلامات التي حفظت"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "عرض التبوب عند فتح نافذة إستعلام جديد"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "نافذة إستعلام إفتراضية"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "إرتفاع نافذة الإستعلام (بالبكسل)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "إرتفاع نافذة الإستعلام"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "عرض نافذة الإستعلام (بالبكسل)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "إرتفاع نافذة الإستعلام"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "إختر أي وظيفة سوف تستعمل لتغيير الترميز"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "محرك إعادة الترميز"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "عند تصفح الجداول, تذكر ترتيب كل جدول"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "تذكر ترتيب الجداول"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "أي مزود"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5150,366 +5155,366 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "اسم قاعدة البيانات"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "تحليل الجدول"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "إظهار تعليقات العمود"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "أوامر"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "عرض المزيد من العمليات"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "إتجاه العرض الإفتراضي"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "أظهر تخطيط الجدول"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "إخفاء صندوق الإستعلام"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5517,28 +5522,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5548,80 +5553,80 @@ msgstr ""
msgid "Password"
msgstr "كلمة السر"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "اسم المستخدم"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "إضافه/حذف عمود حقل"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "افتراضي"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5629,59 +5634,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "زيب"
@@ -5702,86 +5707,86 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Database export options"
msgid "Database export options"
msgstr "خيارات تصدير قاعدة بيانات"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not open file: %s"
msgid "Could not connect to Drizzle server"
msgstr "لايمكن فتح الملف : %s"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5801,21 +5806,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5879,7 +5884,7 @@ msgstr "أنشئ الجدول"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "الاسم"
@@ -6066,26 +6071,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "انشئ إصدار %s لـ %s.s%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6804,18 +6809,17 @@ msgid "Display MIME types"
msgstr "أنواع MIME المتوفرة"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "المزود"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "أنشئ في"
@@ -7024,15 +7028,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "ناتج استعلام SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "أنشئ بواسطة"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "قام MySQL بإرجاع نتيجة فارغة."
@@ -7130,7 +7126,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "اسم الجدول"
@@ -7495,7 +7491,7 @@ msgstr "إنشاء ملفات PDF"
msgid "Displaying Column Comments"
msgstr "إظهار تعليقات العمود"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "تحويل المتصفح"
@@ -7592,10 +7588,10 @@ msgid "Variable"
msgstr "متغير"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "القيمة"
@@ -7654,7 +7650,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, fuzzy, php-format
@@ -7696,8 +7692,8 @@ msgid "Edit event"
msgstr "حدث"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "خطأ في معالجة الطلب"
@@ -7760,7 +7756,7 @@ msgstr "إدخال كامل"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7824,7 +7820,7 @@ msgstr ""
"ملحق 'mysqli' لتجنب أي مشاكل."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "نوع الإجراء غير صحيح: %s"
@@ -7909,35 +7905,35 @@ msgstr "نوع الاستعلام"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -7948,22 +7944,22 @@ msgstr[3] "%d تأثر بالإجراء الأخير"
msgstr[4] "%d تأثر بالإجراء الأخير"
msgstr[5] "%d تأثر بالإجراء الأخير"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "نتائج تنفيذ الإجراء %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "تنفيذ"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "دالة"
@@ -8172,7 +8168,7 @@ msgstr "جدول المحتويات"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "الخواص"
@@ -8280,12 +8276,12 @@ msgid "Toggle scratchboard"
msgstr "toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "rtl"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8333,7 +8329,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8344,11 +8340,11 @@ msgstr ""
msgid "Columns"
msgstr "اسم العمود"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "اجعل علامة مرجعية SQL-استعلام"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
@@ -8445,13 +8441,13 @@ msgstr ""
"لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو "
"مشروح في %sالتوثيق%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "التتبع نشط."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8469,7 +8465,7 @@ msgstr ""
"لليسار (\"\\\") أو علامة الاقتباس الفردية (\"'\") فيما بين تلك القيم، اجعلها "
"كشرطة مائلة لليسار (مثلا '\\\\xyz' أو 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8477,19 +8473,19 @@ msgstr ""
"للقيم الافتراضية، الرجاء أدخل قيمة مفردة، دون علامات هروب أو تنصيص، باستخدام "
"التنسيق: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "فهرست"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "إضافه/حذف عمود حقل"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8498,11 +8494,11 @@ msgstr ""
"لعرض قائمة بخيارات التحويل المتوفرة وأنواع تحويلات MIME الخاصة بها، اضغط على "
"%sخيارات التحويل%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "خيارات التحويل"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8513,79 +8509,79 @@ msgstr ""
">إذا احتجت أن تضع شرطة مائلة (\"\\\") أو علامة تنصيص (\"'\") بين هذه القيم، "
"اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "لا شيء"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "كما هو معرف:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "أساسي"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "النص كاملا"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "بعد %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add into comments"
msgid "Add %s column(s)"
msgstr "أضف إلى الملاحظات"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "عليك اختيار عمود واحد على الأقل للعرض"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "بحث"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8758,11 +8754,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8772,8 +8768,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8946,20 +8942,26 @@ msgstr ""
msgid "No databases"
msgstr "لايوجد قواعد بيانات"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "اسم الجدول"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "اسم الجدول"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "أنشئ الجدول"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "اختر قاعدة بيانات من القائمة"
@@ -10139,7 +10141,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "تخصيص صفحة بدء التشغيل"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "أوامر"
@@ -11264,37 +11266,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11303,39 +11305,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11343,21 +11345,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11366,7 +11368,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11376,37 +11378,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11416,8 +11418,8 @@ msgstr ""
msgid "Wrong data"
msgstr "لايوجد بيانات"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "استعرض القيم الغريبة"
@@ -11451,21 +11453,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "التحقق من استعلام SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "ناتج استعلام SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "أنشئ بواسطة"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "علامة"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11600,7 +11610,7 @@ msgstr "القيمة"
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11812,45 +11822,45 @@ msgstr "إزالة التقسيم"
msgid "Check referential integrity:"
msgstr "تحديد التكامل المرجعي:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "عرض الجداول"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "المساحة المستخدمة"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "الإستخدام"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "فعال"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "إحصائيات"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "ديناميكي"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "طول الصف"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "مقاس الصف "
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12149,31 +12159,31 @@ msgstr "تتبع تقارير التلاعب بالبيانات:"
msgid "Create version"
msgstr "إنشاء إصدار"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "إخفاء معايير البحث"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/az.po b/po/az.po
index bcd4a1dee3..92c607fb13 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-27 16:55+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:18+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: azerbaijani \n"
"Language: az\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Hamısını göster"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Sehife Nömresi:"
@@ -36,30 +36,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Axtarış"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -69,7 +69,7 @@ msgstr "Axtarış"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Davam"
@@ -109,8 +109,8 @@ msgid "Database comment: "
msgstr "Baza qısa izahatı: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Cedvel haqqında qısa izahat"
@@ -121,16 +121,16 @@ msgstr "Cedvel haqqında qısa izahat"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Sütun adları"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "Sütun adları"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tip"
@@ -155,9 +155,9 @@ msgstr "Tip"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +167,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Başlanğıc deyeri"
@@ -176,18 +176,18 @@ msgstr "Başlanğıc deyeri"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Links to"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Qısa İzahatlar"
@@ -198,11 +198,11 @@ msgstr "Qısa İzahatlar"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "Xeyir"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "Beli"
msgid "View dump (schema) of database"
msgstr "Me'lumat bazasının sxemini göster"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Me'lumat bazasında cedvel yoxdur."
@@ -327,8 +327,8 @@ msgstr "Kopyalanmış cedvele keç"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -354,8 +354,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Relational schema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -365,45 +365,44 @@ msgstr "Relational schema"
msgid "Table"
msgstr "Cedvel"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Sıra sayı"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Boy"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "istifadede"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Quruluş"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "En son yenilenme"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "En son yoxlama"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -498,13 +497,13 @@ msgstr "Use Tables"
msgid "SQL query on database %s :"
msgstr "SQL-query on database %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Emri İcra Et"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Giriş Tesdiq Edilmedi"
@@ -539,8 +538,8 @@ msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)"
msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "İçindekiler"
@@ -626,11 +625,11 @@ msgstr "%s sahesi leğv edildi"
msgid "Table %s has been dropped"
msgstr "%s cedveli leğv edildi"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -642,7 +641,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -688,7 +687,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -697,17 +696,18 @@ msgid "Export"
msgstr "Eksport"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Çap görüntüsü"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Boşalt"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -754,15 +754,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Me'lumat Bazası"
@@ -781,7 +780,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -987,13 +986,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Bookmark silindi."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Fayl oxuna bilmir"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1016,7 +1015,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1038,8 +1037,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1168,9 +1167,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Deyişdir"
@@ -1197,7 +1196,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Cemi"
@@ -1208,12 +1207,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1300,13 +1299,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1370,27 +1369,27 @@ msgid "Connections"
msgstr "Elaqeler"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bayt"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "QB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1435,9 +1434,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Heç biri"
@@ -1623,7 +1622,7 @@ msgstr "SQL-i İzah Et"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Müddet"
@@ -1982,7 +1981,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1998,7 +1997,7 @@ msgstr "SQL sorğusu"
msgid "Show search criteria"
msgstr "SQL sorğusu"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2184,7 +2183,7 @@ msgstr "Parolu Deyişdir"
msgid "More"
msgstr "Baz Ert"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2292,27 +2291,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Yan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2320,37 +2319,37 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "İyun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "İyul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Avq"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sent"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Noy"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dek"
@@ -2399,32 +2398,32 @@ msgid "Sun"
msgstr "Baz"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Baz Ert"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Çerş Axş"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Çerş"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Cüme Axş"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Cüme"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Şen"
@@ -2583,11 +2582,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2595,47 +2594,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2649,7 +2648,7 @@ msgstr "İndeks te'yin edilmedi!"
msgid "Indexes"
msgstr "Indeksler"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2686,46 +2685,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Me'lumat Bazaları"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Quruluş"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Elave et"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Emeliyyatlar"
@@ -2808,27 +2807,27 @@ msgstr ""
msgid "Engines"
msgstr "Motorlar"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Xeta"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2874,51 +2873,51 @@ msgstr "%s motoru bu serverde söndürülmüşdür."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Bu MySQL server %s depolama motorunu desteklememektedir."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Search in database"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "Search in database"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2926,16 +2925,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2987,7 +2986,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3028,12 +3027,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Server versiyası"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3044,7 +3043,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Server versiyası"
@@ -3061,7 +3060,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3074,7 +3073,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3172,77 +3171,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Yeni indeks qur"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Setir leğvedicisi (Lines terminated by)"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Cemi"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3311,20 +3310,20 @@ msgstr "Quraşdırılmış Serverler"
msgid "Cookies must be enabled past this point."
msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL server-e gire bilmirem"
@@ -3368,18 +3367,18 @@ msgstr "Cedveller"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Me'lumat"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Aşma deyeri"
@@ -3490,8 +3489,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL sorğusu"
@@ -3501,85 +3500,85 @@ msgstr "SQL sorğusu"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL deyir: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL-i İzah Et"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL İzah Et-i Keç"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP Kodunu Gösterme"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP Kodunu Hazırla"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL İfadesini Yoxlama"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL Tesdiqle"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Motorlar"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Baz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y saat %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s gün, %s saat, %s deqiqe ve %s saniye"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Yeni sahe elave et"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3587,7 +3586,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Başla"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3596,7 +3595,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Evvelki"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3605,7 +3604,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Sonrakı"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3613,45 +3612,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Son"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" me'lumat bazasına keç."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web-server upload direktoriyası"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Çap et"
@@ -3744,72 +3743,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Deyişen"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Link tapılmadı"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3828,7 +3827,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4120,7 +4119,7 @@ msgid "Character set of the file"
msgstr "Faylın Charset-i:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4234,7 +4233,7 @@ msgstr "Etiket açarı"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-tipi"
@@ -4367,8 +4366,8 @@ msgstr "Me'lumat bazası eksport variantları"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV verilenleri"
@@ -4806,110 +4805,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Cedveli analiz et"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4917,451 +4920,451 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Resource limits"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Cedvel sırasına buna göre yeniden qur"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Sorğu penceresi"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Sorğu penceresi"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Sorğu penceresi"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Cedveli yeniden adlandır"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Elaqeler"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Her hansı host"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Cedvel yoxdur"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Quraşdırılmış Serverler"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5370,372 +5373,372 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Me'lumat Bazası"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Quraşdırılmış Serverler"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Cedveli analiz et"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Cedveli te'mir et"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Quraşdırılmış Serverler"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Sütun Qısa İzahatını Deyişdir"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Variantlar"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Avtomatik qurtarma rejimi"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHPInfo() me'lumatını göster"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Me'lumat bazası eksport variantları"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Cedvelleri göster"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Emrleri Tam Olaraq Göster"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL sorğusu"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Sıra Statistikası"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5743,28 +5746,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5774,81 +5777,81 @@ msgstr ""
msgid "Password"
msgstr "Parol"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "İstifadeçi Adı:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Sahe Sütunlarını Elave Et/Sil"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Başlanğıc deyeri"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5856,59 +5859,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5929,82 +5932,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Me'lumat bazası eksport variantları"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel verilenleri üçün CSV"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6024,21 +6027,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6103,7 +6106,7 @@ msgstr "Yeni Sehife qur"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Adı"
@@ -6290,25 +6293,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Server versiyası"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Server versiyası"
@@ -7026,18 +7029,17 @@ msgid "Display MIME types"
msgstr "Mövcud olan MIME-tipleri"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Hazırlanma Vaxtı"
@@ -7250,15 +7252,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL result"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Qurucu"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)."
@@ -7353,7 +7347,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7721,7 +7715,7 @@ msgstr "PDF-lerin qurulması"
msgid "Displaying Column Comments"
msgstr "Sütun Qısa İzahatını Deyişdir"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
@@ -7819,10 +7813,10 @@ msgid "Variable"
msgstr "Deyişen"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Deyer"
@@ -7882,7 +7876,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7920,8 +7914,8 @@ msgid "Edit event"
msgstr "Gönderildi"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7981,7 +7975,7 @@ msgstr "Tam girişli"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8036,7 +8030,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8120,57 +8114,57 @@ msgstr "Sorğu tipi"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funksiya"
@@ -8370,7 +8364,7 @@ msgstr "İçindekiler Cedveli"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Xüsusiyyetler"
@@ -8479,12 +8473,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8534,7 +8528,7 @@ msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
msgid "Run SQL query/queries on database %s"
msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8545,11 +8539,11 @@ msgstr ""
msgid "Columns"
msgstr "Sütun adları"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorğusunu bookmark-la"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8567,7 +8561,7 @@ msgstr ""
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Bu sorğunu burada yene göster "
+msgstr "Bu sorğunu burada yene göster"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8637,12 +8631,12 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary php extensions as described in the %sdocumentation%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8660,7 +8654,7 @@ msgstr ""
"(\"'\") istifade etmek isteyirsinizse, onları ters-kesrle escape-leyin "
"(meselen '\\\\xyz' ve ya 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8668,19 +8662,19 @@ msgstr ""
"Başlanğıc deyer girerken, sadece deyeri girin, ters kesr escape-leme ya da "
"dırnaqdan istifade etmeyin, bu formatı te'qib edin: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "İndeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Sahe Sütunlarını Elave Et/Sil"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8689,11 +8683,11 @@ msgstr ""
"For a list of available transformation options and their MIME-type "
"transformations, click on %stransformation descriptions%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Transformasiya variantları"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8705,79 +8699,79 @@ msgstr ""
"quote (\"'\") amongst those values, backslashes it (for example '\\\\xyz' or "
"'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Heç biri"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Birinci Dereceli"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Tam metn (Fulltext)"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Sonra: %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Yeni sahe elave et"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Depolama Motorları"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "Emeliyyatlar"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Axtarış"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8955,11 +8949,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8969,8 +8963,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9144,19 +9138,25 @@ msgstr ""
msgid "No databases"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Cedvel sırasına buna göre yeniden qur"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Cedvel sırasına buna göre yeniden qur"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Yeni Sehife qur"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Me'lumat bazası seç"
@@ -9771,7 +9771,7 @@ msgstr "Cedvelexas selahiyyetler"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir "
+msgstr "Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir"
#: server_privileges.php:711
msgid "Administration"
@@ -10342,7 +10342,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Variantlar"
@@ -11455,37 +11455,37 @@ msgstr ""
msgid "Show form"
msgstr "Rengini göster"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11494,39 +11494,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11534,21 +11534,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11557,7 +11557,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11567,37 +11567,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11607,8 +11607,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11642,21 +11642,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "SQL Tesdiqle"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL result"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Qurucu"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etiket"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "The selected users have been deleted successfully."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
msgid "The columns have been moved successfully."
msgstr "The selected users have been deleted successfully."
@@ -11791,7 +11799,7 @@ msgstr "Deyer"
msgid "Table %s already exists!"
msgstr "%s istifadeçisi mövcuddur!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "%s cedveli leğv edildi"
@@ -12010,45 +12018,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Cedvelleri göster"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Yer istifadesi"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Miqdar"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Sıra Statistikası"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamik"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Sıra uzunluğu"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Sıra boyu "
+msgstr "Sıra boyu"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12356,30 +12364,30 @@ msgstr ""
msgid "Create version"
msgstr "Server versiyası"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL sorğusu"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/be.po b/po/be.po
index 67e4948a4a..27a91c7abf 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,15 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-03-12 09:12+0100\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:18+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: belarusian_cyrillic \n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -19,11 +21,11 @@ msgid "Show all"
msgstr "Паказаць усе"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Старонка:"
@@ -38,30 +40,30 @@ msgstr ""
"міжваконных ўзаемадзеяньняў"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Пошук"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +73,7 @@ msgstr "Пошук"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Панеслася"
@@ -109,8 +111,8 @@ msgid "Database comment: "
msgstr "Камэнтар да базы дадзеных: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Камэнтар да табліцы"
@@ -121,16 +123,16 @@ msgstr "Камэнтар да табліцы"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Назвы калёнак"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +140,12 @@ msgstr "Назвы калёнак"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Тып"
@@ -155,9 +157,9 @@ msgstr "Тып"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Нуль"
@@ -167,7 +169,7 @@ msgstr "Нуль"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Па змоўчаньні"
@@ -176,18 +178,18 @@ msgstr "Па змоўчаньні"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Зьвязаная з"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Камэнтары"
@@ -198,11 +200,11 @@ msgstr "Камэнтары"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +222,12 @@ msgstr "Не"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +237,8 @@ msgstr "Так"
msgid "View dump (schema) of database"
msgstr "Праглядзець дамп (схему) базы дадзеных"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "У базе дадзеных табліц ня выяўлена."
@@ -326,8 +328,8 @@ msgstr "Перайсьці да скапіяванай базы дадзеных
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -352,8 +354,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Рэляцыйная схема"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -363,45 +365,44 @@ msgstr "Рэляцыйная схема"
msgid "Table"
msgstr "Табліца"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Радкі"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Памер"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "выкарыстоўваецца"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Створаная"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Апошняе абнаўленьне"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Апошняя праверка"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -496,13 +497,13 @@ msgstr "Выкарыстоўваць табліцы"
msgid "SQL query on database %s :"
msgstr "SQL-запыт да БД %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Выканаць запыт"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "У доступе адмоўлена"
@@ -537,8 +538,8 @@ msgstr[0] "%s супадзеньняў у табліцы %s "
msgstr[1] "%s супадзеньняў у табліцы %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Прагляд"
@@ -624,11 +625,11 @@ msgstr "Выгляд %s быў выдалены"
msgid "Table %s has been dropped"
msgstr "Табліца %s была выдаленая"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -642,7 +643,7 @@ msgstr ""
"%sдакумэнтацыі%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Выгляд"
@@ -689,7 +690,7 @@ msgstr "Адзначыць тыя, што патрабуюць аптыміза
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -698,17 +699,18 @@ msgid "Export"
msgstr "Экспарт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Вэрсія для друку"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Ачысьціць"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -757,15 +759,14 @@ msgid "Tracked tables"
msgstr "Праверыць табліцу"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "База дадзеных"
@@ -785,7 +786,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Стан"
@@ -995,13 +996,13 @@ msgstr "Паказваючы закладку"
msgid "The bookmark has been deleted."
msgstr "Закладка была выдаленая."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Немагчыма прачытаць файл"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1031,7 +1032,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка %s створаная"
@@ -1058,8 +1059,8 @@ msgstr ""
"звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі "
"вы не павялічыце ліміты выкананьня php-скрыптоў."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1188,9 +1189,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Рэдагаваць"
@@ -1217,7 +1218,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Агулам"
@@ -1228,12 +1229,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1325,13 +1326,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "МіБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "КiБ"
@@ -1399,27 +1400,27 @@ msgid "Connections"
msgstr "Падлучэньні"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Б"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "ГіБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "ТіБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "ПіБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "ЭіБ"
@@ -1467,9 +1468,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Няма"
@@ -1659,7 +1660,7 @@ msgstr "Тлумачыць SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Час"
@@ -2028,7 +2029,7 @@ msgstr "%d не зьяўляецца карэктным нумарам радк
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2044,7 +2045,7 @@ msgstr "SQL-запыт"
msgid "Show search criteria"
msgstr "SQL-запыт"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2231,7 +2232,7 @@ msgstr "Зьмяніць пароль"
msgid "More"
msgstr "Пан"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2339,27 +2340,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Сту"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Сак"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Кра"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2367,37 +2368,37 @@ msgid "May"
msgstr "Тра"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Чэр"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Ліп"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Жні"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Кас"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Ліс"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Сьн"
@@ -2446,32 +2447,32 @@ msgid "Sun"
msgstr "Ндз"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Пан"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Аўт"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Цач"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Пят"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Суб"
@@ -2633,11 +2634,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Памер шрыфта"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2645,13 +2646,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php."
"ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2659,37 +2660,37 @@ msgstr ""
"Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў "
"вызначаны ў HTML-форме."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Файл быў загружаны толькі часткова."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Адсутнічае часовая тэчка."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Памылка запісу на дыск."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Загрузка файла спыненая пашырэньнем."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Падчас загрузкі файла адбылася невядомая памылка."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2703,7 +2704,7 @@ msgstr "Індэкс ня вызначаны!"
msgid "Indexes"
msgstr "Індэксы"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2741,46 +2742,46 @@ msgstr ""
"Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь "
"іх, магчыма, можна выдаліць."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Базы дадзеных"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сэрвэр"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Уставіць"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Апэрацыі"
@@ -2861,13 +2862,13 @@ msgstr ""
msgid "Engines"
msgstr "Машыны"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Памылка"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -2875,7 +2876,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "Зьменена радкоў: %1$d."
msgstr[1] "Зьменена радкоў: %1$d."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -2883,7 +2884,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Выдалена радкоў: %1$d."
msgstr[1] "Выдалена радкоў: %1$d."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -2934,54 +2935,54 @@ msgstr "%s была адключаная для рэтага MySQL-сэрвэр
msgid "This MySQL server does not support the %s storage engine."
msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Паказаць стан залежных сэрвэраў"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Пошук у базе дадзеных"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Тэма %s ня знойдзеная!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Няправільная база дадзеных"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Некарэктнае імя табліцы"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Памылка перайменаваньня табліцы %1$s у %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Табліца %s была перайменаваная ў %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2989,16 +2990,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Папярэдні прагляд недаступны."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "гэтая"
@@ -3050,7 +3051,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3091,12 +3092,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Стварыць сувязь"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3107,7 +3108,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3125,7 +3126,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3138,7 +3139,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3237,77 +3238,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Стварыць новы індэкс"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Радкі падзеленыя"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Колькасьць файлаў логу"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3381,13 +3382,13 @@ msgstr "Выбар сэрвэра"
msgid "Cookies must be enabled past this point."
msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3395,8 +3396,8 @@ msgstr ""
"Не было аніякай актыўнасьці на працягу %s сэкундаў. Калі ласка, увайдзіце "
"зноў"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Немагчыма залагавацца на сэрвэр MySQL"
@@ -3441,18 +3442,18 @@ msgstr "Табліц"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Дадзеныя"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Выкарыстаньне рэсурсаў"
@@ -3569,8 +3570,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-запыт"
@@ -3580,85 +3581,85 @@ msgstr "SQL-запыт"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Адказ MySQL: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Тлумачыць SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Не тлумачыць SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Без PHP-коду"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Стварыць PHP-код"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Абнавіць"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Не правяраць SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Праверыць SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Машыны"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Прафіляваньне"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ндз"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Працэдуры"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3666,7 +3667,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Першая старонка"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3675,7 +3676,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Папярэдняя старонка"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3684,7 +3685,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Наступная старонка"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3692,46 +3693,46 @@ msgctxt "Last page"
msgid "End"
msgstr "Апошняя старонка"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Перайсьці да базы дадзеных "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Друк"
@@ -3824,71 +3825,71 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Зьменная"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
msgid "SOAP extension not found"
msgstr "Пашырэньне PHP"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3907,7 +3908,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4202,7 +4203,7 @@ msgid "Character set of the file"
msgstr "Кадыроўка файла:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Фармат"
@@ -4316,7 +4317,7 @@ msgstr "Ключ меткі"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-тып"
@@ -4446,8 +4447,8 @@ msgstr "Налады экспарту базы дадзеных"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4900,111 +4901,117 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Колькасьць адкрытых табліц."
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "The number of tables that are open."
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Колькасьць адкрытых табліц."
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
#, fuzzy
msgid "Database tree separator"
msgstr "Шаблён назвы файла"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
#, fuzzy
msgid "Use light version"
msgstr "Вэрсія кліента MySQL"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
msgid "Recently used tables"
msgstr "Праверыць табліцу"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -5012,461 +5019,461 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
#, fuzzy
msgid "Maximum databases"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Абмежаваньні рэсурсаў"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Зьмяніць парадак табліцы"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Акно запыту"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Акно запыту"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Акно запыту"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Перайменаваць табліцу ў"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Патокаў узнаўленьня"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
#, fuzzy
msgid "Save directory"
msgstr "Хатняя тэчка дадзеных"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
#, fuzzy
msgid "Host authorization order"
msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
#, fuzzy
msgid "Host authorization rules"
msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
#, fuzzy
msgid "Authentication method to use"
msgstr "Аўтэнтыфікацыя..."
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
#, fuzzy
msgid "Authentication type"
msgstr "Аўтэнтыфікацыя..."
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Падлучэньні"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Любы хост"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Няма табліц"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Дэфрагмэнтаваць табліцу"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
#, fuzzy
msgid "PHP extension to use"
msgstr "Пашырэньне PHP"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "імя сэрвэра"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5475,376 +5482,376 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "імя базы дадзеных"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "ID сэрвэра"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Аналізаваць табліцу"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Рамантаваць табліцу"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Выбар сэрвэра"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Паказваць камэнтары калёнак"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Дэфрагмэнтаваць табліцу"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Выразы"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Рэжым аўтаматычнага ўзнаўленьня"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Паказаць інфармацыю пра PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Паказаць стан залежных сэрвэраў"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Налады экспарту базы дадзеных"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Паказаць адкрытыя табліцы"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Паказаць сетку"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Паказаць поўныя запыты"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL-запыт"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Статыстыка радку"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5852,29 +5859,29 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
#, fuzzy
msgid "Skip locked tables"
msgstr "Паказаць адкрытыя табліцы"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5884,80 +5891,80 @@ msgstr ""
msgid "Password"
msgstr "Пароль"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Імя карыстальніка:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
msgid "Default title"
msgstr "Перайменаваць базу дадзеных у"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5965,60 +5972,60 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
#, fuzzy
msgid "Upload directory"
msgstr "Хатняя тэчка дадзеных"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -6043,84 +6050,84 @@ msgid "Signon authentication"
msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV з выкарыстаньнем LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Спэцыфікацыя Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Іншы колер"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Налады экспарту базы дадзеных"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV для дадзеных MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Тэкст Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6140,7 +6147,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6148,17 +6155,17 @@ msgid ""
"configured)."
msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сэрвэр не адказвае"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Падрабязьней..."
@@ -6226,7 +6233,7 @@ msgstr "Стварыць табліцу"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Назва"
@@ -6424,25 +6431,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Вэрсія кліента MySQL"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Стварыць сувязь"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Стварыць сувязь"
@@ -7221,18 +7228,17 @@ msgid "Display MIME types"
msgstr "Даступныя MIME-тыпы"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Час стварэньня"
@@ -7445,15 +7451,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-вынік"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Створаны"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)."
@@ -7550,7 +7548,7 @@ msgstr "Няправільная колькасьць палёў у CSV-дадз
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Імя табліцы"
@@ -7918,7 +7916,7 @@ msgstr "Стварэньне PDF-файлаў"
msgid "Displaying Column Comments"
msgstr "Паказваць камэнтары калёнак"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Пераўтварэньне MIME-тыпу браўзэрам"
@@ -8020,10 +8018,10 @@ msgid "Variable"
msgstr "Зьменная"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Значэньне"
@@ -8082,7 +8080,7 @@ msgstr "Згенэраваць пароль"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -8121,8 +8119,8 @@ msgid "Edit event"
msgstr "Вэб-сэрвэр"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8186,7 +8184,7 @@ msgstr "Поўная ўстаўка"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8242,7 +8240,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8331,60 +8329,60 @@ msgstr "Тып запыту"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Працэдуры"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Функцыя"
@@ -8595,7 +8593,7 @@ msgstr "Зьмест"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Атрыбуты"
@@ -8704,12 +8702,12 @@ msgid "Toggle scratchboard"
msgstr "Паказаць папярэдні прагляд"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Невядомая мова: %1$s."
@@ -8760,7 +8758,7 @@ msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s"
msgid "Run SQL query/queries on database %s"
msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8772,11 +8770,11 @@ msgstr "Каляндар"
msgid "Columns"
msgstr "Назвы калёнак"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Дадаць гэты SQL-запыт у закладкі"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
@@ -8794,7 +8792,7 @@ msgstr "Разьдзяляльнік"
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Паказаць гэты запыт зноў "
+msgstr "Паказаць гэты запыт зноў"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8878,12 +8876,12 @@ msgstr ""
"ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі"
"%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8901,7 +8899,7 @@ msgstr ""
"зваротны слэш (\"\\\") або апостраф (\"'\") сярод гэтых значэньняў, пастаўце "
"перад імі зваротны слэш (напрыклад, '\\\\xyz' або 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8909,19 +8907,19 @@ msgstr ""
"Для значэньняў па змоўчаньні, калі ласка, увядзіце проста значэньне, без "
"выкарыстаньня зваротных слэшаў і двукосься, выкарыстоўваючы фармат: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Індэкс"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8930,11 +8928,11 @@ msgstr ""
"Для атрыманьня сьпісу даступных опцыяў трансфармацыі і пераўтварэньняў іхных "
"MIME-тыпаў, націсьніце на %sапісаньні пераўтварэньняў%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Опцыі пераўтварэньня"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8946,79 +8944,79 @@ msgstr ""
"або апостраф (\"'\") у гэтых значэньнях, устаўце зваротны слэш перад імі "
"(напрыклад, '\\\\xyz' або 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Няма"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Як вызначана:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Першасны"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Поўнатэкстэкставае"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Пасьля %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Дадаць %s новыя палі"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Трэба дадаць прынамсі адно поле."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Машына захаваньня дадзеных"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Азначэньне PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Апэратар"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Пошук"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9230,13 +9228,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9246,8 +9244,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Файлы ў ZIP-архіве ня знойдзеныя!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Памылка ў ZIP-архіве:"
@@ -9433,20 +9431,26 @@ msgstr ""
msgid "No databases"
msgstr "Базы дадзеных адсутнічаюць"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "імя табліцы"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "імя табліцы"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Стварыць табліцу"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Калі ласка, выберыце базу дадзеных"
@@ -10068,7 +10072,7 @@ msgstr "Прывілеі, спэцыфічныя для табліцы"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску "
+msgstr "Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску"
#: server_privileges.php:711
msgid "Administration"
@@ -10645,7 +10649,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Выразы"
@@ -11902,37 +11906,37 @@ msgstr ""
msgid "Show form"
msgstr "Паказаць колер"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11941,39 +11945,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11981,21 +11985,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -12004,7 +12008,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -12014,37 +12018,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -12054,8 +12058,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Базы дадзеных адсутнічаюць"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Праглядзець зьнешнія значэньні"
@@ -12089,21 +12093,29 @@ msgstr "У выглядзе SQL-запыту"
msgid "Validated SQL"
msgstr "Праверыць SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-вынік"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Створаны"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Праблемы з індэксамі для табліцы `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Метка"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Табліца %1$s была пасьпяхова зьмененая"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12244,7 +12256,7 @@ msgstr "Значэньне"
msgid "Table %s already exists!"
msgstr "Табліца %s ужо існуе!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Табліца %1$s створаная."
@@ -12461,45 +12473,45 @@ msgstr "Скасаваць падзел на часткі"
msgid "Check referential integrity:"
msgstr "Праверыць цэласнасьць дадзеных:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Паказаць табліцы"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Выкарыстаньне прасторы"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Выкарыстаньне"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Эфэктыўнасьць"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Статыстыка радку"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "дынамічны"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Даўжыня радка"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Памер радка "
+msgstr "Памер радка"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12812,30 +12824,30 @@ msgstr ""
msgid "Create version"
msgstr "Стварыць сувязь"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL-запыт"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
msgid "How to use"
msgstr "Пашырэньне PHP"
diff --git a/po/be@latin.po b/po/be@latin.po
index 738ba54f21..3516d2940e 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-03-30 23:09+0200\n"
-"Last-Translator: Michal \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:18+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: belarusian_latin \n"
"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Pootle 2.0.1\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Pakazać usie"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Staronka:"
@@ -40,30 +40,30 @@ msgstr ""
"mižvakonnych ŭzajemadziejańniaŭ"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Pošuk"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Pošuk"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Paniesłasia"
@@ -111,8 +111,8 @@ msgid "Database comment: "
msgstr "Kamentar da bazy dadzienych: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Kamentar da tablicy"
@@ -123,16 +123,16 @@ msgstr "Kamentar da tablicy"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Nazvy kalonak"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Nazvy kalonak"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -157,9 +157,9 @@ msgstr "Typ"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nul"
@@ -169,7 +169,7 @@ msgstr "Nul"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Pa zmoŭčańni"
@@ -178,18 +178,18 @@ msgstr "Pa zmoŭčańni"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Źviazanaja z"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Kamentary"
@@ -200,11 +200,11 @@ msgstr "Kamentary"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "Nie"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Tak"
msgid "View dump (schema) of database"
msgstr "Prahladzieć damp (schiemu) bazy dadzienych"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "U bazie dadzienych tablic nia vyjaŭlena."
@@ -329,8 +329,8 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -355,8 +355,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Relacyjnaja schiema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -366,45 +366,44 @@ msgstr "Relacyjnaja schiema"
msgid "Table"
msgstr "Tablica"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Radki"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Pamier"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "vykarystoŭvajecca"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Stvoranaja"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Apošniaje abnaŭleńnie"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Apošniaja pravierka"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -500,13 +499,13 @@ msgstr "Vykarystoŭvać tablicy"
msgid "SQL query on database %s :"
msgstr "SQL-zapyt da BD %s:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Vykanać zapyt"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "U dostupie admoŭlena"
@@ -542,8 +541,8 @@ msgstr[1] "%s supadzieńniaŭ u tablicy %s"
msgstr[2] "%s supadzieńniaŭ u tablicy %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Prahlad"
@@ -630,11 +629,11 @@ msgstr "Vyhlad %s byŭ vydaleny"
msgid "Table %s has been dropped"
msgstr "Tablica %s była vydalenaja"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -648,7 +647,7 @@ msgstr ""
"%sdakumentacyi%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vyhlad"
@@ -695,7 +694,7 @@ msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -704,17 +703,18 @@ msgid "Export"
msgstr "Ekspart"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Versija dla druku"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Ačyścić"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -761,15 +761,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Baza dadzienych"
@@ -787,7 +786,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Stan"
@@ -993,13 +992,13 @@ msgstr "Pakazvajučy zakładku"
msgid "The bookmark has been deleted."
msgstr "Zakładka była vydalenaja."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Niemahčyma pračytać fajł"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1029,7 +1028,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Zakładka %s stvoranaja"
@@ -1056,8 +1055,8 @@ msgstr ""
"Heta zvyčajna značyć, što phpMyAdmin nia zmoža skončyć hetaje impartavańnia, "
"kali vy nie pavialičycie limity vykanańnia php-skryptoŭ."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1186,9 +1185,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Redagavać"
@@ -1216,7 +1215,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ahułam"
@@ -1227,12 +1226,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1325,13 +1324,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1399,27 +1398,27 @@ msgid "Connections"
msgstr "Padłučeńni"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1468,9 +1467,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Nijakaja"
@@ -1662,7 +1661,7 @@ msgstr "Tłumačyć SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Čas"
@@ -2039,7 +2038,7 @@ msgstr "%d nie źjaŭlajecca karektnym numaram radka."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2057,7 +2056,7 @@ msgstr "pa zapytu"
msgid "Show search criteria"
msgstr "U vyhladzie SQL-zapytu"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2243,7 +2242,7 @@ msgstr "Źmianić parol"
msgid "More"
msgstr "Pan"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2352,27 +2351,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Sak"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Kra"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2380,37 +2379,37 @@ msgid "May"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Čer"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Žni"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Vier"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Śn"
@@ -2459,32 +2458,32 @@ msgid "Sun"
msgstr "Ndz"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Pan"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Aŭt"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Sier"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Cač"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Piat"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sub"
@@ -2646,11 +2645,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Pamier šryfta"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2658,13 +2657,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php."
"ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2672,38 +2671,38 @@ msgstr ""
"Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ "
"vyznačany ŭ HTML-formie."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Fajł byŭ zahružany tolki častkova."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Adsutničaje časovaja tečka."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Pamyłka zapisu na dysk."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Zahruzka fajła spynienaja pašyreńniem."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2717,7 +2716,7 @@ msgstr "Indeks nia vyznačany!"
msgid "Indexes"
msgstr "Indeksy"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2755,46 +2754,46 @@ msgstr ""
"Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź "
"ich, mahčyma, možna vydalić."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Bazy dadzienych"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Ustavić"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Aperacyi"
@@ -2875,13 +2874,13 @@ msgstr ""
msgid "Engines"
msgstr "Mašyny"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Pamyłka"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -2889,7 +2888,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "Źmieniena radkoŭ: %1$d."
msgstr[1] "Źmieniena radkoŭ: %1$d."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -2897,7 +2896,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Vydalena radkoŭ: %1$d."
msgstr[1] "Vydalena radkoŭ: %1$d."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -2948,54 +2947,54 @@ msgstr "%s była adklučanaja dla retaha MySQL-servera."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Pakazać stan zaležnych serveraŭ"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s nia znojdzienaja!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Niapravilnaja baza dadzienych"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Niekarektnaje imia tablicy"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tablica %s była pierajmienavanaja ŭ %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -3003,16 +3002,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Papiaredni prahlad niedastupny."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "hetaja"
@@ -3064,7 +3063,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3105,13 +3104,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3122,7 +3121,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3140,7 +3139,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3153,7 +3152,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3252,77 +3251,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Stvaryć novy indeks"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Radki padzielenyja"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Kolkaść fajłaŭ łogu"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3396,13 +3395,13 @@ msgstr "Vybar servera"
msgid "Cookies must be enabled past this point."
msgstr "Cookies musiać być uklučanymi paśla hetaha miesca."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3410,8 +3409,8 @@ msgstr ""
"Nie było anijakaj aktyŭnaści na praciahu %s sekundaŭ. Kali łaska, uvajdzicie "
"znoŭ"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Niemahčyma załahavacca na server MySQL"
@@ -3457,18 +3456,18 @@ msgstr "Tablic"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Dadzienyja"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Vykarystańnie resursaŭ"
@@ -3587,8 +3586,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-zapyt"
@@ -3598,85 +3597,85 @@ msgstr "SQL-zapyt"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Adkaz MySQL: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Tłumačyć SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Nie tłumačyć SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Biez PHP-kodu"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Stvaryć PHP-kod"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Abnavić"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Nie praviarać SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Pravieryć SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Mašyny"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Prafilavańnie"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ndz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Pracedury"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3684,7 +3683,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Pieršaja staronka"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3693,7 +3692,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Papiaredniaja staronka"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3702,7 +3701,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nastupnaja staronka"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3710,47 +3709,47 @@ msgctxt "Last page"
msgid "End"
msgstr "Apošniaja staronka"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Pierajści da bazy dadzienych \"%s\"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie "
"na %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "tečka web-servera dla zahruzki fajłaŭ"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Druk"
@@ -3842,72 +3841,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Źmiennaja"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Suviaź nia znojdzienaja"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3926,7 +3925,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4219,7 +4218,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Farmat"
@@ -4330,7 +4329,7 @@ msgstr "Kluč mietki"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-typ"
@@ -4460,8 +4459,8 @@ msgstr "Dziejańni z vynikami zapytaŭ"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4900,110 +4899,116 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Kolkaść adkrytych tablic."
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "The number of tables that are open."
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Kolkaść adkrytych tablic."
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analizavać tablicu"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -5011,448 +5016,448 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Źmianić paradak tablicy"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Akno zapytu"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Akno zapytu"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Akno zapytu"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Pierajmienavać tablicu ŭ"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Patokaŭ uznaŭleńnia"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Luby chost"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5461,373 +5466,373 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "imia bazy dadzienych"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analizavać tablicu"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Pakazvać kamentary kalonak"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defrahmentavać tablicu"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Vyrazy"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Pakazać infarmacyju pra PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Pakazać stan zaležnych serveraŭ"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Relational display field"
msgid "Show display direction"
msgstr "Adlustravanaje pole suviazi"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Pakazać adkrytyja tablicy"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Pakazać sietku"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "pa zapytu"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5835,28 +5840,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5866,80 +5871,80 @@ msgstr ""
msgid "Password"
msgstr "Parol"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dadać/vydalić kalonku kryteru"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Pa zmoŭčańni"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5947,59 +5952,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -6028,86 +6033,86 @@ msgid "Signon authentication"
msgstr "Aŭtentyfikacyja..."
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV z vykarystańniem LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Specyfikacyja Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Inšy koler"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Database export options"
msgid "Database export options"
msgstr "Nałady ekspartu bazy dadzienych"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV dla dadzienych MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Tekst Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6127,7 +6132,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6135,17 +6140,17 @@ msgid ""
"configured)."
msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server nie adkazvaje"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Padrabiaźniej..."
@@ -6213,7 +6218,7 @@ msgstr "Stvaryć tablicu"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nazva"
@@ -6409,26 +6414,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "General relation features"
msgid "committed on %1$s by %2$s"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "General relation features"
msgid "authored on %1$s by %2$s"
@@ -7213,18 +7218,17 @@ msgid "Display MIME types"
msgstr "Dastupnyja MIME-typy"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Chost"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Čas stvareńnia"
@@ -7437,15 +7441,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-vynik"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Stvorany"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)."
@@ -7543,7 +7539,7 @@ msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Imia tablicy"
@@ -7911,7 +7907,7 @@ msgstr "Stvareńnie PDF-fajłaŭ"
msgid "Displaying Column Comments"
msgstr "Pakazvać kamentary kalonak"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Pieraŭtvareńnie MIME-typu braŭzeram"
@@ -8010,10 +8006,10 @@ msgid "Variable"
msgstr "Źmiennaja"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Značeńnie"
@@ -8072,7 +8068,7 @@ msgstr "Zgieneravać parol"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -8112,8 +8108,8 @@ msgid "Edit event"
msgstr "Padzieja"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8176,7 +8172,7 @@ msgstr "Poŭnaja ŭstaŭka"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8232,7 +8228,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8322,35 +8318,35 @@ msgstr "Typ zapytu"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8358,25 +8354,25 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Pracedury"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcyja"
@@ -8587,7 +8583,7 @@ msgstr "Źmiest"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atrybuty"
@@ -8696,12 +8692,12 @@ msgid "Toggle scratchboard"
msgstr "Pakazać papiaredni prahlad"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nieviadomaja mova: %1$s."
@@ -8749,7 +8745,7 @@ msgstr "Vykanać SQL-zapyt(y) na servery %s"
msgid "Run SQL query/queries on database %s"
msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8760,11 +8756,11 @@ msgstr ""
msgid "Columns"
msgstr "Nazvy kalonak"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Dadać hety SQL-zapyt u zakładki"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
@@ -8782,7 +8778,7 @@ msgstr "Raździalalnik"
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Pakazać hety zapyt znoŭ "
+msgstr "Pakazać hety zapyt znoŭ"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8867,12 +8863,12 @@ msgstr ""
"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
"%sdakumentacyi%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8890,7 +8886,7 @@ msgstr ""
"słeš (\"\\\") abo apostraf (\"'\") siarod hetych značeńniaŭ, pastaŭcie "
"pierad imi zvarotny słeš (naprykład, '\\\\xyz' abo 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8898,19 +8894,19 @@ msgstr ""
"Dla značeńniaŭ pa zmoŭčańni, kali łaska, uviadzicie prosta značeńnie, biez "
"vykarystańnia zvarotnych słešaŭ i dvukośsia, vykarystoŭvajučy farmat: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Dadać/vydalić kalonku kryteru"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8919,11 +8915,11 @@ msgstr ""
"Dla atrymańnia śpisu dastupnych opcyjaŭ transfarmacyi i pieraŭtvareńniaŭ "
"ichnych MIME-typaŭ, naciśnicie na %sapisańni pieraŭtvareńniaŭ%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opcyi pieraŭtvareńnia"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8935,79 +8931,79 @@ msgstr ""
"apostraf (\"'\") u hetych značeńniach, ustaŭcie zvarotny słeš pierad imi "
"(naprykład, '\\\\xyz' abo 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Nijakaja"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Jak vyznačana:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Pieršasny"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Poŭnatekstekstavaje"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Paśla %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Dadać %s novyja pali"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Treba dadać prynamsi adno pole."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Mašyna zachavańnia dadzienych"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Aznačeńnie PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Aperatar"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Pošuk"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9222,13 +9218,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9238,8 +9234,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Fajły ŭ ZIP-archivie nia znojdzienyja!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Pamyłka ŭ ZIP-archivie:"
@@ -9427,20 +9423,26 @@ msgstr ""
msgid "No databases"
msgstr "Bazy dadzienych adsutničajuć"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "imia tablicy"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "imia tablicy"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Stvaryć tablicu"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Kali łaska, vybierycie bazu dadzienych"
@@ -10062,7 +10064,7 @@ msgstr "Pryvilei, specyfičnyja dla tablicy"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku "
+msgstr "Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku"
#: server_privileges.php:711
msgid "Administration"
@@ -10636,7 +10638,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Vyrazy"
@@ -11887,37 +11889,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11926,39 +11928,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11966,21 +11968,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11989,7 +11991,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11999,37 +12001,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -12039,8 +12041,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Bazy dadzienych adsutničajuć"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Prahladzieć źniešnija značeńni"
@@ -12074,21 +12076,29 @@ msgstr "U vyhladzie SQL-zapytu"
msgid "Validated SQL"
msgstr "Pravieryć SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-vynik"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Stvorany"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Prablemy z indeksami dla tablicy `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Mietka"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tablica %1$s była paśpiachova źmienienaja"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12227,7 +12237,7 @@ msgstr "Značeńnie"
msgid "Table %s already exists!"
msgstr "Tablica %s užo isnuje!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tablica %1$s stvoranaja."
@@ -12444,45 +12454,45 @@ msgstr "Skasavać padzieł na častki"
msgid "Check referential integrity:"
msgstr "Pravieryć cełasnaść dadzienych:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Pakazać tablicy"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Vykarystańnie prastory"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Vykarystańnie"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektyŭnaść"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statystyka radku"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamičny"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Daŭžynia radka"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Pamier radka "
+msgstr "Pamier radka"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12794,31 +12804,31 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "in query"
msgid "Additional search criteria"
msgstr "pa zapytu"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index 82763b595d..c174a8777d 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-12 23:40+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-15 20:20+0200\n"
"Last-Translator: Стоян Димитров \n"
"Language-Team: bulgarian \n"
"Language: bg\n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Показване на всички"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Страница:"
@@ -39,30 +39,30 @@ msgstr ""
"един прозорец в друг от съображения за сигурност."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Търсене"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Търсене"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Изпълнение"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Коментар към БД: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Коментари към таблицата"
@@ -124,14 +124,14 @@ msgstr "Коментари към таблицата"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Kолона"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Kолона"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -156,9 +156,9 @@ msgstr "Тип"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Празно"
@@ -168,7 +168,7 @@ msgstr "Празно"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "По подразбиране"
@@ -177,18 +177,18 @@ msgstr "По подразбиране"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Свързана към"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Коментари"
@@ -199,11 +199,11 @@ msgstr "Коментари"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Не"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Да"
msgid "View dump (schema) of database"
msgstr "Преглед на схема (дъмп) на БД"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "В БД няма таблици."
@@ -322,8 +322,8 @@ msgstr "Показване на копираната БД"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Редакция или експорт на релационна схема"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Редакция или експорт на релационна схе
msgid "Table"
msgstr "Таблица"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Редове"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Размер"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "ползва се в момента"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Дата на създаване"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Последно обновление"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Последна проверка"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -481,13 +480,13 @@ msgstr "Използване таблиците"
msgid "SQL query on database %s :"
msgstr "SQL заявка към БД %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Изпълни заявката"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Отказан достъп"
@@ -521,8 +520,8 @@ msgstr[0] "%1$s съвпадение в таблица %2$s "
msgstr[1] "%1$s съвпадения в таблица %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Прелистване"
@@ -598,11 +597,11 @@ msgstr "Изглед %s беше изтрит"
msgid "Table %s has been dropped"
msgstr "Таблицата %s беше изтрита"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Проследяването е активно."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Проследяването е неактивно."
@@ -614,7 +613,7 @@ msgid ""
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Изглед"
@@ -659,7 +658,7 @@ msgstr "Маркиране на таблиците със загубено мя
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -668,17 +667,18 @@ msgid "Export"
msgstr "Експорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Преглед за печат"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Изчистване"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -721,15 +721,14 @@ msgid "Tracked tables"
msgstr "Следени таблици"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "БД"
@@ -747,7 +746,7 @@ msgstr "Съвременен"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Състояние"
@@ -936,13 +935,13 @@ msgstr "Показване на белязка"
msgid "The bookmark has been deleted."
msgstr "Белязката беше изтрита."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Файлът не може да бъде прочетен"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -974,7 +973,7 @@ msgstr ""
"Не могат да бъдат заредени разширенията за импорт, моля проверете "
"инсталацията!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Белязка %s беше създадена"
@@ -1001,8 +1000,8 @@ msgstr ""
"обикновено означава, че phpMyAdmin няма да бъде в състояние да завърши този "
"импорт, освен ако не бъдат увеличени времевите ограничения в PHP."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1113,9 +1112,9 @@ msgid "Close"
msgstr "Затваряне"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Редакция"
@@ -1139,7 +1138,7 @@ msgstr "Статична информация"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Общо"
@@ -1150,12 +1149,12 @@ msgid "Other"
msgstr "Друго"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1238,13 +1237,13 @@ msgid "System swap"
msgstr "Системен swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "КБ"
@@ -1302,27 +1301,27 @@ msgid "Connections"
msgstr "Връзки"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Б"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "ЕБ"
@@ -1362,9 +1361,9 @@ msgstr "Моля добавете поне една променлива към
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Няма"
@@ -1548,7 +1547,7 @@ msgstr "Обяснение на изхода"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Време"
@@ -1856,7 +1855,7 @@ msgstr "%d не е валиден номер на ред."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1870,7 +1869,7 @@ msgstr "Скриване критерий за търсене"
msgid "Show search criteria"
msgstr "Показване критерий за търсене"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr ""
@@ -2048,7 +2047,7 @@ msgstr "Смяна парола"
msgid "More"
msgstr "Още"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2135,63 +2134,63 @@ msgid "December"
msgstr "декември"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "яну"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "фев"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "март"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "май"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "юни"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "юли"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "септ"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "ное"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "дек"
@@ -2229,32 +2228,32 @@ msgid "Sun"
msgstr "нд"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "пн"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "вт"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "ср"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "чт"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "пт"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "сб"
@@ -2397,11 +2396,11 @@ msgstr ""
"Неподходящи права на файлът с настройки, в него не трябва да може да пише "
"всеки!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Размер шрифт"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Твърде много съобщения за грешки, някои не са показани."
@@ -2409,38 +2408,38 @@ msgstr "Твърде много съобщения за грешки, някои
msgid "File was not an uploaded file."
msgstr "Файлът не е бил качен."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
"Изпратеният файл надхвърля директивата MAX_FILE_SIZE заложена във формата."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Подаденият файл беше само частично качен."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Липсва временна папка."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Неуспешно записване на файл на диска."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Качването на файлът беше спряно от разширение."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Неизвестна грешка при качване."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2448,11 +2447,11 @@ msgstr ""
"Грешка при преместване на качения файл, виж [a@./Documentation."
"html#faq1_11@Documentation]ЧЗВ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Грешка при преместване на качения файл."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Не може да бъде прочетен (преместен) качен файл."
@@ -2466,7 +2465,7 @@ msgstr "Не е избран индекс!"
msgid "Indexes"
msgstr "Индекси"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2504,46 +2503,46 @@ msgstr ""
"Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да "
"бъде премахнат."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "БД"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сървър"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Вмъкване"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Операции"
@@ -2622,27 +2621,27 @@ msgstr ""
msgid "Engines"
msgstr "Хранилища"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Грешка"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d повлиян ред."
msgstr[1] "%1$d повлияни реда."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d ред изтрит."
msgstr[1] "%1$d реда изтрити."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2685,50 +2684,50 @@ msgstr "%s е забранено за този MySQL сървър."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Този MySQL сървър не поддържа хранилището на данни %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "неизвестно състояние на таблица: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "БД-източник `%s` не е намерена!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "Целевата БД `%s` не е намерена!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Невалидна БД"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Невалидно име на таблица"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Грешка при преименуване на таблица %1$s в %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Таблица %1$s беше преименувана на %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Таблицата с визуалните настройки не може да бъде запазена"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2736,16 +2735,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Не открито изображение към тема %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Прегледът не е достъпен."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "тази ще е"
@@ -2797,7 +2796,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2838,12 +2837,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Дата, поддържан диапазон е %1$s до %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Комбинация от дата и час, поддържаният диапазон е %1$s до %2$s"
@@ -2854,7 +2853,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Време, диапазонът е %1$s до %2$s"
@@ -2871,7 +2870,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2884,7 +2883,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2983,36 +2982,35 @@ msgstr "Набор от многоъгълници"
msgid "A collection of geometry objects of any type"
msgstr "Набор от геометрични обекти от всякакъв вид"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "Цифров"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Create an index"
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Дата и час"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Linestring"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial column"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Пространствена колона"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "Цяло 4-байтово число с диапазон от -2 147 483 648 до 2 147 483 647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3020,41 +3018,41 @@ msgstr ""
"Цяло 8-байтово число с диапазон от -9 223 372 036 854 775 808 до 9 223 372 "
"036 854 775 807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "Истина или неистина"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Синоним на BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Съхранява универсално уникален идентификатор (UUID)"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "Изброяване, избор от списък на определените стойности"
@@ -3126,20 +3124,20 @@ msgstr "Избор на сървър"
msgid "Cookies must be enabled past this point."
msgstr "Оттук нататък са необходими бисквитки."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Входът без парола е забранен от конфигурацията (виж AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Няма активност през последните %s секунди; моля влезте отново"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Невъзможен вход в MySQL сървъра"
@@ -3183,18 +3181,18 @@ msgstr "Таблици"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Данни"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Загубено място"
@@ -3301,8 +3299,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL заявка"
@@ -3312,144 +3310,144 @@ msgstr "SQL заявка"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL отговори: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Неуспешно свързване към SQL валидатора!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Обяснение на SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Пропусни Explain SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Без PHP код"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Създаване на PHP код"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Опресняване"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Пропусни Validate SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Валидиране на SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Редакция на заявката на място"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "На място"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Профилиране"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "нд"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%e %B %Y в %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дена, %s часа, %s минути и %s секунди"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Липсващ параметър:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Начало"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Предна"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Следваща"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Последна"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Показване БД "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Функционалността %s се влияе от известен дефект, виж %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Щракване за превключване"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Разглеждане на компютъра:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Избор от директорията за качване %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Папката, която сте указали за качване е недостъпна"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Няма файлве за качване"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Изпълнение"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Печат"
@@ -3533,68 +3531,68 @@ msgstr "и двете по-горе"
msgid "neither of the above"
msgstr "никое от горните"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Не е положително число"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Не е неотрицателно число"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Невалиден номер на порт"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Невалидна стойност"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Стойността трябва да е по-малка или равна на %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Липсващи данни за %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "недостъпно"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" изисква разширението %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "импортът не работи, липсваща функционалност (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "експортът не работи, липсваща функционалност (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL валидаторът е изключен"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Разширението SOAP не е намерено"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "най-много %s"
@@ -3613,7 +3611,7 @@ msgid "Set value: %s"
msgstr "Стойност: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Стойност по подразбиране"
@@ -3918,7 +3916,7 @@ msgid "Character set of the file"
msgstr "Знаков набор на файла"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Формат"
@@ -4017,7 +4015,7 @@ msgstr "Етикет на ключа"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME тип"
@@ -4139,8 +4137,8 @@ msgstr "Персонализиране настройките по подраз
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4555,98 +4553,102 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
+msgid "Minimum number of databases to display the database filter box"
+msgstr ""
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Низ, който разделя БД в отделни разклонения на дърво"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Разделител на дървото на БД"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Показване БД като дърво"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Изключете ако искате да виждате всички БД наведнъж"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Използване олекотена версия"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Максимална дълбочина на дървото на таблиците"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Низ, който разделя таблици в отделни разклонения на дърво"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Разделител на дървото на таблици"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "Адрес, към който ще сочи логото от рамката на навигацията"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Връзка на логото"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Цел за връзката на логото"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Включване синтактичното оцветяване"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Максимален брой скоро отваряни таблици; 0 за забрана"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Последно отваряни таблици"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Ограничаване знаците в колона"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Изтриване всички бисквитки при изход"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4654,11 +4656,11 @@ msgstr ""
"Определя дали да се припомни или не потребителското име от предишен вход в "
"режим на удостоверяване с бисквитка"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Запомняне потребителското име"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4666,122 +4668,122 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Валидност на бисквитката за вход"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Двойни текстови полета за колони тип LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "По-голямо текстово поле за LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
"Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "Предупреждение от mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-"Броят байтове, които скрипт може да заеме, напр. [kbd]32М /kbd] "
-"([kbd]0[/kbd] за без ограничение)"
+"Броят байтове, които скрипт може да заеме, напр. [kbd]32М /kbd] ([kbd]0[/"
+"kbd] за без ограничение)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Ограничение на паметта"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Това са връзките Редакция, Копиране и Изтриване"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Къде да бъдат показани връзките в ред от таблица"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Използване естествен ред за сортиране на имена на таблици и БД"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Естествен ред"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Използване само пиктограми, само текст или и двете"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "Използване GZip буфериране за увеличаване скоростта на HTTP трансфери"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip буфериране"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4789,224 +4791,224 @@ msgstr ""
"[kbd]ИНТЕЛИГЕНТНО[/kbd] - т.е. низходящ ред за колони тип TIME, DATE, "
"DATETIME и TIMESTAMP, иначе възходящ ред"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Ред за сортиране по подразбиране"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Използване на постоянни връзки към MySQL БД"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Постоянни връзки"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Защитаване на двоичните колони"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Постоянна история на заявките"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Колко заявки да се съхраняват в историята"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Дължина на историята на заявки"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Височина на прозореца за заявки (в пиксели)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Височина на прозореца за заявки"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Ширина на прозореца за заявки (в пиксели)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Ширина на прозореца за заявки"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "При преглед на таблици, сортирането на всяка да бъде запомнено"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Запомняне сортирането на таблици"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Повтаряне на заглавката"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Папка на сървъра, в която експортите да бъдат записвани"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Оставете празно, ако не се използва"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Оставете празно, за стойности по подразбиране"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Разрешаване вход без парола"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Разрешаване вход с потребител root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Метод за удостоверяване"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Тип удостоверяване"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Таблица за белязки"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Компресиране връзката към MySQL сървър"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Компресиране връзката"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Тип връзки"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Парола на контролен потребител"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-"Специален MySQL потребител с ограничени права, "
-"[a@http://wiki.phpmyadmin.net/pma/controluser]още информация[/a]"
+"Специален MySQL потребител с ограничени права, [a@http://wiki.phpmyadmin.net/"
+"pma/controluser]още информация[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Контролен потребител"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5014,98 +5016,98 @@ msgstr ""
"Алтернативен хост, на който има хранилище с конфигурация; оставете празно, "
"за да използвате вече дефиниран хост"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Контролен хост"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Преброяване на таблиците при показване на списък а БД"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Преброяване таблиците"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Таблица за Дизайнера"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-"Допълнителна информация в "
-"[a@http://sf.net/support/tracker.php?aid=1849494]системата за проследяване "
-"на дефекти на PMA[/a] и [a@http://bugs.mysql.com/19588]дефекти на MySQL[/a]"
+"Допълнителна информация в [a@http://sf.net/support/tracker.php?aid=1849494]"
+"системата за проследяване на дефекти на PMA[/a] и [a@http://bugs.mysql."
+"com/19588]дефекти на MySQL[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Забрана използването на INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "Кое PHP разширение да бъде използвано; ползвайте mysqli ако е налично"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Използвано PHP разширение"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Скриване БД, съответстващи на регулярен израз (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Скриване БД"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Адрес за изход"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Опит за връзка без парола"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Връзка без парола"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5114,140 +5116,138 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Показване само на изброените БД"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Оставете празно, ако не използвате удостоверяване от настройките"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Парола за удостоверяване от настройките"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Име БД"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Порт, на който MySQL сървърът слуша, оставете празно за този по подразбиране"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Порт на сървъра"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Последно отваряна таблица"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Таблица за връзка"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL команда, която да извади списък на наличните БД"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Команда SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-"За примери посетете "
-"[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]видове "
-"удостоверяване[/a]"
+"За примери посетете [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
+"видове удостоверяване[/a]"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-"Сокет, на които MySQL сървърът слуша, оставете празно за този по "
-"подразбиране"
+"Сокет, на които MySQL сървърът слуша, оставете празно за този по подразбиране"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Сокет на сървъра"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Разрешаване на SSL връзка към MySQL сървър"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Използване SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Показване таблицата с колоните"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Таблица с визуалните настройки"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5255,11 +5255,11 @@ msgstr ""
"Дали израз DROP DATABASE IF EXISTS да бъде добавян като първи ред в дневника "
"при създаване на БД."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Добавяне DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5267,11 +5267,11 @@ msgstr ""
"Дали израз DROP TABLE IF EXISTS да бъде добавян като първи ред в дневника "
"при създаване на таблица."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Добавяне DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5279,53 +5279,53 @@ msgstr ""
"Дали израз DROP VIEW IF EXISTS да бъде добавян като първи ред в дневника при "
"създаване на изглед."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Добавяне DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Изрази, които да бъдат проследявани"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Автоматично създаване на версии"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Таблица за съхранение на потребителските предпочитания"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5333,76 +5333,77 @@ msgstr ""
"Разбираемо за потребителя описание на този сървър. Ако е празно ще бъде "
"показан хоста."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Описателно име на този сървър"
-#: libraries/config/messages.inc.php:454
-msgid "Whether a user should be displayed a "show all (rows)" button"
-msgstr "Дали на потребителя да бъде показван бутон "показване всички""
-
#: libraries/config/messages.inc.php:455
+msgid "Whether a user should be displayed a "show all (rows)" button"
+msgstr ""
+"Дали на потребителя да бъде показван бутон "показване всички""
+
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Разрешаване показването на всички редове"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Показване формуляр за смяна на парола"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Показване формуляр за създаване на БД"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Показване или скриване на колона с времево клеймо на създаването за всички "
"таблици"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Показване времево клеймо на създаването"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Показване или скриване на колона с времево клеймо на последната промяна за "
"всички таблици"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Показване времево клеймо на последната промяна"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Показване или скриване на колона с времево клеймо на последната проверка за "
"всички таблици"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Показване времево клеймо на последната проверка"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5410,79 +5411,82 @@ msgstr ""
"Определя дали първоначално да бъдат показани типовете на полетата при "
"редакция/вмъкване"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Показване типовете полета"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Показване на поле с функциите при редакция/вмъкване"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Показване поле с функциите"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Дали да бъде показвана подсказка"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Показване подсказка"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-"Показва връзка към изхода на "
-"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]"
+"Показва връзка към изхода на [a@http://php.net/manual/function.phpinfo.php]"
+"phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Показване връзка към phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Показва подробна информация за MySQL сървъра"
-#: libraries/config/messages.inc.php:476
-msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
-msgstr "Определя дали SQL заявките, генерирани от phpMyAdmin да бъдат показвани"
-
#: libraries/config/messages.inc.php:477
+msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
+msgstr ""
+"Определя дали SQL заявките, генерирани от phpMyAdmin да бъдат показвани"
+
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Показване на SQL заявките"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Определя дали прозорецът със заявката да остане екрана след изпращането му"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
-msgstr "Запазване на прозореца за заявки"
-
-#: libraries/config/messages.inc.php:480
-msgid "Allow to display database and table statistics (eg. space usage)"
-msgstr ""
+msgstr "Запазване отворен прозореца за заявки"
#: libraries/config/messages.inc.php:481
+msgid "Allow to display database and table statistics (eg. space usage)"
+msgstr ""
+"Разрешаване показването на статистика за таблици и БД (напр. заемано "
+"пространство)"
+
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Показване статистика"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5490,28 +5494,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Показване на коментара на таблицата вместо името"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Показване на коментара на таблицата в подсказка"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Пропускане заключени таблици"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Изисква SQL валидаторът да бъде включван"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5521,79 +5525,79 @@ msgstr "Изисква SQL валидаторът да бъде включван
msgid "Password"
msgstr "Парола"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
"[strong]Предупреждение:[/strong] изисква инсталиран PHP SOAP или PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Включване на SQL валидатора"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-"Ако имате отделно потребителско име, въведете го тук (по подразбиране е "
-"[kbd]anonymous[/kbd])"
+"Ако имате отделно потребителско име, въведете го тук (по подразбиране е [kbd]"
+"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Потребителско име"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Колони в текство поле"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Реда в текстово поле"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Заглавие на прозореца на браузъра, когато е избрана БД"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Заглавие на прозореца на браузъра, когато не е избрано нищо"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Заглавие по подразбиране"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Заглавие на прозореца на браузъра, когато е избран сървър"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Заглавие на прозореца на браузъра, когато е избрана таблица"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5601,54 +5605,54 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"Папка на сървъра, в която можете да качвате файлове, за да бъдат импортирани"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Папка за качване на файлове"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Проверка за обновление"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Позволява проверка за обновления на страницата на phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Проверка за обновления"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5656,7 +5660,7 @@ msgstr ""
"Включване на [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"компресия при импорт и експорт"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5677,84 +5681,84 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV с LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Бърз"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Потребителски"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Опции за експорт на БД"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV за MS Excel данни"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Невъзможност за свързване с MySQL сървър"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"Празно потребителско име при използване на метод за удостоверяване от "
"настройките"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Грешен IP адрес: %s"
@@ -5774,7 +5778,7 @@ msgstr "Разширението %s липсва. Проверете конфи
msgid "possible deep recursion attack"
msgstr "възможна атака чрез дълбока рекурсия"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5782,15 +5786,15 @@ msgstr ""
"Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран "
"правилно)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Сървърът не отговаря."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Проверете правата на папката, съдържаща БД."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Подробности..."
@@ -5854,7 +5858,7 @@ msgstr "Създаване таблица"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Име"
@@ -6009,25 +6013,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr ""
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr ""
@@ -6690,18 +6694,17 @@ msgid "Display MIME types"
msgstr "Показване MIME типове"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Време на генериране"
@@ -6901,15 +6904,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL резултат"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Генерирано от"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL върна празен резултат (т.е. нула редове)."
@@ -7001,7 +6996,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Име на таблица"
@@ -7352,7 +7347,7 @@ msgstr "Създаване на PDF-и"
msgid "Displaying Column Comments"
msgstr "Показване на коментари към Колоните"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Браузърна трансформация"
@@ -7451,10 +7446,10 @@ msgid "Variable"
msgstr "Променлива"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Стойност"
@@ -7513,7 +7508,7 @@ msgstr "Генериране на парола"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7549,8 +7544,8 @@ msgid "Edit event"
msgstr "Редакция събитие"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Грешка при обработка на заявката"
@@ -7600,7 +7595,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7658,7 +7653,7 @@ msgstr ""
"разширение 'mysqli', за да избегнете проблеми."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Невалиден тип процедура: \"%s\""
@@ -7729,17 +7724,17 @@ msgstr "Сигурност"
msgid "SQL data access"
msgstr "Достъп до SQL данните"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Трябва да дадете име на процедурата"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Невалидна посока \"%s\" подадена като параметър."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -7747,41 +7742,41 @@ msgstr ""
"Трябва да дадете дължина/стойност за параметрите на процедурата от тип ENUM, "
"SET, VARCHAR и VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Трябва да дадете име и тип за всеки параметър на процедурата."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Трябва да дадете валиден тип на данните при изход на процедурата."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Трябва да дадете дефиниция на процедурата."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d ред променен от последният израз на съхранената процедура"
msgstr[1] "%d реда променени от последният израз на съхранената процедура"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Резултати от изпълнението на процедура %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Изпълнение на процедура"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Параметри на процедурата"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Функция"
@@ -7956,7 +7951,7 @@ msgstr "Съдържание"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Атрибути"
@@ -8055,12 +8050,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Непознат език: %1$s."
@@ -8106,7 +8101,7 @@ msgstr "Изпълняване на SQL заявка/заявки на сърв
msgid "Run SQL query/queries on database %s"
msgstr "Изпълнение на SQL заявка/заявки към БД %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Изчистване"
@@ -8115,11 +8110,11 @@ msgstr "Изчистване"
msgid "Columns"
msgstr "Колони"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Отбелязване SQL заявката"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Всеки потребител да има достъп до тази белязка"
@@ -8220,12 +8215,12 @@ msgstr ""
"инсталирани необходимите PHP разширения, както е описано в %sдокументацията"
"%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Проследяването на %s е активно."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8237,7 +8232,7 @@ msgstr ""
"обратна черта (\"\\\") или апостроф (\"'\") между тези стойности, сложите "
"обратна черта пред тях (например: '\\\\xyz' или 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8245,17 +8240,17 @@ msgstr ""
"За стойностите по подразбиране, моля въведете само една стойност, без "
"обратни черти или апостроф, използвайки следния формат: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Индекс"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Преместване колона"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8264,11 +8259,11 @@ msgstr ""
"За списъка на достъпните опции на трансформацията и техните трансформации по "
"MIME тип натиснете на %sописания на трансформацията%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Опции на трансформацията"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8281,71 +8276,71 @@ msgstr ""
"поставете пред тях допълнителна обратно наклонена черта (например '\\\\xyz' "
"или 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Много ENUM или SET данни?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Още място за редакция"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Няма"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Дефиниран като:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Първичен"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Пълнотекстово"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "след %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Добавяне %s колона(и)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Трябва да добавите поне една колона."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Хранилище"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Оператор"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Търсене в таблица"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Редакция/Вмъкване"
@@ -8499,11 +8494,11 @@ msgstr ""
"Вашите настройки ще бъдат пазени само за текущата сесия. За да ги използвате "
"постоянно е необходимо %sконфигурационно хранилище%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Конфигурацията не може да бъде запазена"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8515,8 +8510,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Не са открити файлове в ZIP архива!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Грешка в ZIP архива:"
@@ -8677,16 +8672,22 @@ msgstr ""
msgid "No databases"
msgstr "Няма БД"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "филтър по таблица"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "филтър по таблица"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Създаване таблица"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Моля изберете БД"
@@ -9815,7 +9816,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Запитвания от включването: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Заявление"
@@ -10907,12 +10908,12 @@ msgstr "Пренебрегване на грешките"
msgid "Show form"
msgstr "Показване формуляр"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -10920,26 +10921,26 @@ msgstr ""
"Неуспешно получаване на версията. Вероятно сте offline или сървърът за "
"обновления не отговаря."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Няма по-нова стабилна версия"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10948,39 +10949,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -10988,21 +10989,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11011,7 +11012,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11021,37 +11022,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip архивиране%s изизква функцията (%s), която не е налична."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip разархивиране%s изизква функцията (%s), която не е налична."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Използвайте SSL ако БД сървърът ви го поддържа."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "По причини свързани с производителността използвайте mysqli."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Позволено е свързването към сървъра без парола."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Ключът е твърде къс, трябва да бъде поне 8 знака."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Ключът трябва да съдържа букви, цифри [em]и[/em] специални знаци."
@@ -11059,8 +11060,8 @@ msgstr "Ключът трябва да съдържа букви, цифри [em
msgid "Wrong data"
msgstr "Грешни данни"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Разглеждане на външни стойности"
@@ -11090,21 +11091,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Валидиран SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL резултат"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Генерирано от"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем с индексите на таблица `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Етикет"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Таблицата %1$s беше променена"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Колоните бяха преместени упешно."
@@ -11222,7 +11231,7 @@ msgstr "Стойности на Y"
msgid "Table %s already exists!"
msgstr "Таблица %s вече съществува!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Таблицата %1$s беше създадена."
@@ -11422,43 +11431,43 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Проверка на интегритета на връзките:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Показване таблици"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Използвано място"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Използвани"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Ефективни"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Статистика за редовете"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "статичен"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "динамичен"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Дължина ред"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Размер ред"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11743,29 +11752,29 @@ msgstr "Проследяване следните изрази за манипу
msgid "Create version"
msgstr "Създаване на версия"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Изпълняване \"заявка по шаблон\" (знак за заместване: \"%\") за две различни "
"колони"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Допълнителен критерий за търсене"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Използване колоната като етикет за всяка точка"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Максимален брой редове за изчертаване"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Прелистване/Редакция точки"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Как да бъде използвано"
@@ -12691,7 +12700,8 @@ msgstr ""
#: libraries/advisory_rules.txt:397
#, php-format
msgid "%s%% of all connections are aborted. This value should be below 1%%"
-msgstr "%s%% на всички прекъснати клиенти. Тази стойност трябва да бъде под 1%%"
+msgstr ""
+"%s%% на всички прекъснати клиенти. Тази стойност трябва да бъде под 1%%"
#: libraries/advisory_rules.txt:399
msgid "Rate of aborted connections"
@@ -12702,8 +12712,8 @@ msgstr "Стойност прекъснати връзки"
msgid ""
"Aborted connections rate is at %s, this value should be less than 1 per hour"
msgstr ""
-"Стойността на прекъснатите клиенти е %s, тази стойност трябва да бъде "
-"по-малка от 1 за час"
+"Стойността на прекъснатите клиенти е %s, тази стойност трябва да бъде по-"
+"малка от 1 за час"
#: libraries/advisory_rules.txt:406
msgid "Percentage of aborted clients"
@@ -12726,7 +12736,8 @@ msgstr ""
#: libraries/advisory_rules.txt:411
#, php-format
msgid "%s%% of all clients are aborted. This value should be below 2%%"
-msgstr "%s%% на всички прекъснати клиенти. Тази стойност трябва да бъде под 2%%"
+msgstr ""
+"%s%% на всички прекъснати клиенти. Тази стойност трябва да бъде под 2%%"
#: libraries/advisory_rules.txt:413
msgid "Rate of aborted clients"
diff --git a/po/bn.po b/po/bn.po
index a0414b85eb..26e2e67096 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: bangla \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "সবগুলো দেখাও"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "পাতার সংখ্যাঃ"
@@ -39,30 +39,30 @@ msgstr ""
"দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "খুঁজুন"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "খুঁজুন"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "যাও"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "ডাটাবেজ মন্তব্যসমূহঃ"
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "টেবিলের মন্তব্য সমূহ"
@@ -124,14 +124,14 @@ msgstr "টেবিলের মন্তব্য সমূহ"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "কলামের"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "কলামের"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "ধরন"
@@ -156,9 +156,9 @@ msgstr "ধরন"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "খালি"
@@ -168,7 +168,7 @@ msgstr "খালি"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "ডিফল্ট"
@@ -177,18 +177,18 @@ msgstr "ডিফল্ট"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "সংযুক্তি হবে"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "মন্তব্যসমূহ"
@@ -199,11 +199,11 @@ msgstr "মন্তব্যসমূহ"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "না"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "হ্যাঁ"
msgid "View dump (schema) of database"
msgstr "ডাটাবেজ ওর (schema) ভান্ডারটি দেখা হোক"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।"
@@ -324,8 +324,8 @@ msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তি
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "সম্বন্ধযুক্ত স্কিমা"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "সম্বন্ধযুক্ত স্কিমা"
msgid "Table"
msgstr "টেবিল"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rows"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "আকার"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "in use"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Creation"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "সর্বশেষ আপডেট"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Last check"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "টেবিল ব্যাবহারকারী"
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr ""
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "প্রবেশ নিষেধ"
@@ -525,8 +524,8 @@ msgstr[0] "%s ভিতরের টেবিলটি মানানসই
msgstr[1] "%s ভিতরের টেবিলগুলি মানানসই %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "ব্রাউজ করুন"
@@ -602,11 +601,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "ট্র্যাকিং সক্রিয়।"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "ট্র্যাকিং সক্রিয় নয়।"
@@ -618,7 +617,7 @@ msgid ""
msgstr "এই ভিউ এ অন্তত এই সংখ্যক সারি রয়েছে। %sdocumentation%s পড়ুন."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "View"
@@ -663,7 +662,7 @@ msgstr "ওভারহেড সহ টেবিল পরীক্ষা ক
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -672,17 +671,18 @@ msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Print view"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "খালি"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -725,15 +725,14 @@ msgid "Tracked tables"
msgstr "টেবিলগুলি ট্রাক করা"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "ডাটাবেজ"
@@ -751,7 +750,7 @@ msgstr "আপডেটেড"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "অবস্থা"
@@ -938,13 +937,13 @@ msgstr "বুকমার্ক দেখান"
msgid "The bookmark has been deleted."
msgstr "বুকমার্কটি মুছে ফেলা হয়েছে"
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "ফাইল পড়া যায়নি"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -970,7 +969,7 @@ msgstr "অক্ষর সেট রূপান্তর গ্রন্থা
msgid "Could not load import plugins, please check your installation!"
msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "বুকমার্ক %s তৈরী করা হয়েছে"
@@ -992,8 +991,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1103,9 +1102,9 @@ msgid "Close"
msgstr "বন্ধ"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "সম্পাদনা কর"
@@ -1129,7 +1128,7 @@ msgstr "স্থিসি উপাত্ত"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "মোট"
@@ -1140,12 +1139,12 @@ msgid "Other"
msgstr "স্থিতি উপাত্ত"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1227,13 +1226,13 @@ msgid "System swap"
msgstr "সিস্টেম বিনিময়"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "মেগাবাইট"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "কিলোবাইট"
@@ -1291,27 +1290,27 @@ msgid "Connections"
msgstr "সংযোগসমূহ"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "বাইট"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "গিগাবাইট"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "টেরাবাইট"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "পেটাবাইট"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "এক্সাবাইট"
@@ -1351,9 +1350,9 @@ msgstr "অনুগ্রহপূর্বক সিরিজসমূহে
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "কোনটিই নয়"
@@ -1541,7 +1540,7 @@ msgstr "SQL ব্যাখ্যা কর"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "সময়"
@@ -1906,7 +1905,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1922,7 +1921,7 @@ msgstr "SQL query"
msgid "Show search criteria"
msgstr "SQL query"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2109,7 +2108,7 @@ msgstr "পাসওয়ার্ড পরিবর্তন কর"
msgid "More"
msgstr "সোমবার"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2217,27 +2216,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "জানুয়ারী"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "ফেব্রুয়ারী"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "মার্চ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "এপ্রিল"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2245,37 +2244,37 @@ msgid "May"
msgstr "মে"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "জুন"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "জুলাই"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "আগস্ট"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "সেপ্টেমবর"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "অক্টোবর"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "নভেম্বর"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "ডিসেম্বর"
@@ -2324,32 +2323,32 @@ msgid "Sun"
msgstr "রবিবার"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "সোমবার"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "মঙ্গলবার"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "বুধবার"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "বৃহস্পতিবার"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "শুক্রবার"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "শনিবার"
@@ -2509,11 +2508,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "ফন্ট এর আকার"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2521,48 +2520,48 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
#, fuzzy
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2576,7 +2575,7 @@ msgstr ""
msgid "Indexes"
msgstr "ইন্ডেস্ক সমূহ"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2613,46 +2612,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "ডাটাবেজসমূহ Databases"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "সার্ভার"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Structure"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insert"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operations"
@@ -2734,20 +2733,20 @@ msgstr ""
msgid "Engines"
msgstr "ইঞ্জিনসমূহ"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "ভূল"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2755,7 +2754,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "No rows selected"
msgstr[1] "No rows selected"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2805,53 +2804,53 @@ msgstr "MySQL সার্ভার এর জন্য %s বন্ধ কর
msgid "This MySQL server does not support the %s storage engine."
msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Show slave status"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "ডাটাবে এ খুজুঁনSearch in database"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "ডাটাবে এ খুজুঁনSearch in database"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Table %s has been renamed to %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2859,16 +2858,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "take it"
@@ -2920,7 +2919,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2961,12 +2960,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Server version"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2977,7 +2976,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Server version"
@@ -2994,7 +2993,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3007,7 +3006,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3106,77 +3105,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "লাইনস্ট্র্রিং"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "মোট"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3248,20 +3247,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি"
@@ -3305,18 +3304,18 @@ msgstr "টেবিলসমূহ"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "ডাটা"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overhead"
@@ -3426,8 +3425,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL query"
@@ -3437,83 +3436,83 @@ msgstr "SQL query"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL ব্যাখ্যা কর"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP কোড ছাড়া"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP কোড তৈরী করুনCreate PHP Code"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Refresh"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "ইঞ্জিনসমূহ"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "রবিবার"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3521,7 +3520,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "শুরু"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3530,7 +3529,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "পূর্ববর্তী"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3539,7 +3538,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "পরবর্তী"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3547,45 +3546,45 @@ msgctxt "Last page"
msgid "End"
msgstr "End"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web server upload directory"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "প্রিন্ট কর"
@@ -3678,71 +3677,71 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "চলক"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
msgid "SOAP extension not found"
msgstr "PHP Version"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3761,7 +3760,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4057,7 +4056,7 @@ msgid "Character set of the file"
msgstr "ফাইল এর অক্ষরসমূহঃ"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "ফরমেট"
@@ -4171,7 +4170,7 @@ msgstr "Label key"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "মাইম এর ধরন"
@@ -4301,8 +4300,8 @@ msgstr "ডাটাবেজ এক্সপোটঁ করার সুবি
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4756,111 +4755,117 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "The number of tables that are open."
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "The number of tables that are open."
+msgid "Minimum number of databases to display the database filter box"
+msgstr "The number of tables that are open."
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
#, fuzzy
msgid "Database tree separator"
msgstr "ফাইল নাম এর টেমপ্লেট"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
#, fuzzy
msgid "Use light version"
msgstr "MySQL client version"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
msgid "Recently used tables"
msgstr "টেবিল পরীক্ষা কর"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4868,457 +4873,457 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
#, fuzzy
msgid "Maximum databases"
msgstr "কোন ডাটাবেজ নাই"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Resource limits"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "টেবিল অর্ডার পরিবর্তন কর"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Query window"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Query window"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Query window"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "টেবিল রিনেম করুন"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "থ্রেড রিপেয়ার করুন"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
#, fuzzy
msgid "Save directory"
msgstr "Data home directory"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "সংযোগসমূহ"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "যেকোন হোষ্ট"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "কোন টেবিল নাই"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Defragment table"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
#, fuzzy
msgid "PHP extension to use"
msgstr "PHP Version"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "কোন ডাটাবেজ নাই"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "সার্ভার এর নাম"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5327,376 +5332,376 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "ডাটাবেজ এর নাম"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "সার্ভারের আইডি"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "টেবিল বিশ্লেষণ কর"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "টেবিল রিপেয়ার করুন"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Server Choice"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragment table"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Statements"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Automatic recovery mode"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Show PHP information"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Show slave status"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Show open tables"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Show Full Queries"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL query"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Row Statistics"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5704,29 +5709,29 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
#, fuzzy
msgid "Skip locked tables"
msgstr "Show open tables"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5736,80 +5741,80 @@ msgstr ""
msgid "Password"
msgstr "পাসওয়ার্ড"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "ব্যাবহারকারী"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Add/Delete Field Columns"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
msgid "Default title"
msgstr "ডাটাবেজ রিনেম কর"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5817,60 +5822,60 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
#, fuzzy
msgid "Upload directory"
msgstr "Data home directory"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5891,82 +5896,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5986,7 +5991,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5994,17 +5999,17 @@ msgid ""
"configured)."
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "The server is not responding"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6071,7 +6076,7 @@ msgstr "একটি নতুন পাতা তৈরী কর"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "নাম"
@@ -6267,25 +6272,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "MySQL client version"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Server version"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Server version"
@@ -7021,18 +7026,17 @@ msgid "Display MIME types"
msgstr "Available MIME types"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "হোষ্ট"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "তৈরী করার জন্য সময়"
@@ -7244,15 +7248,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL result"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7348,7 +7344,7 @@ msgstr "Invalid field count in CSV input on line %d."
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
#, fuzzy
msgid "Table name"
@@ -7713,7 +7709,7 @@ msgstr "পিডিএফ সমূহ তৈরী"
msgid "Displaying Column Comments"
msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
@@ -7813,10 +7809,10 @@ msgid "Variable"
msgstr "চলক"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "মান"
@@ -7875,7 +7871,7 @@ msgstr "পাসওয়ার্ড তৈরী কর"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7913,8 +7909,8 @@ msgid "Edit event"
msgstr "Sent"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7976,7 +7972,7 @@ msgstr "Complete inserts"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8032,7 +8028,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8117,58 +8113,58 @@ msgstr "Query type"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Allows executing stored routines."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "ফাংশন"
@@ -8373,7 +8369,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attributes"
@@ -8483,12 +8479,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8538,7 +8534,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8550,11 +8546,11 @@ msgstr "ক্যালেন্ডার"
msgid "Columns"
msgstr "কলামের নাম"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "এই SQL query টি বুকমার্ক করুন"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
@@ -8640,13 +8636,13 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "ট্র্যাকিং সক্রিয়।"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8664,36 +8660,36 @@ msgstr ""
"a single quote (\"'\") amongst those values, precede it with a backslash "
"(for example '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "ইন্ডেস্ক"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Add/Delete Field Columns"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8705,79 +8701,79 @@ msgstr ""
"quote (\"'\") amongst those values, precede it with a backslash (for example "
"'\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "কোনটিই নয়"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "প্রাথমিক"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "After %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s ক্ষেত্রসমূহ যোগ কর"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "You have to add at least one field."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Storage Engine"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "অপারেটর"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "খুঁজুন"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8971,13 +8967,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8987,8 +8983,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ZIP archive: এ ভূল আছে"
@@ -9164,19 +9160,25 @@ msgstr ""
msgid "No databases"
msgstr "কোন ডাটাবেজ নাই"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "টেবিল অর্ডার পরিবর্তন কর"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "টেবিল অর্ডার পরিবর্তন কর"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "একটি নতুন পাতা তৈরী কর"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -10363,7 +10365,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Statements"
@@ -11489,37 +11491,37 @@ msgstr ""
msgid "Show form"
msgstr "রং দেখান"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11528,39 +11530,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11568,21 +11570,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11591,7 +11593,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11601,37 +11603,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11641,8 +11643,8 @@ msgstr ""
msgid "Wrong data"
msgstr "কোন ডাটাবেজ নাই"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11677,21 +11679,29 @@ msgstr "Show Full Queries"
msgid "Validated SQL"
msgstr "Validate SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL result"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "লেবেল"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "The selected users have been deleted successfully."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
msgid "The columns have been moved successfully."
msgstr "The selected users have been deleted successfully."
@@ -11825,7 +11835,7 @@ msgstr "মান"
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Table %s has been dropped"
@@ -12041,45 +12051,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Show tables"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Space usage"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "ব্যাবহার"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effective"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "ডায়নামিক"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "সাড়ির দৈর্ঘ্য"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "সাড়ির আকার"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12391,30 +12401,30 @@ msgstr ""
msgid "Create version"
msgstr "Server version"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL query"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
msgid "How to use"
msgstr "PHP Version"
diff --git a/po/br.po b/po/br.po
index 9e86dcebb8..d404c44bf1 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-14 16:33+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 14:55+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: LANGUAGE \n"
"Language: br\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 0.6\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -24,13 +24,13 @@ msgid "Show all"
msgstr "Diskouez pep tra"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
-msgstr "Pajenn niv. :"
+msgstr "Pajenn niv. : "
#: browse_foreigners.php:159
msgid ""
@@ -43,30 +43,30 @@ msgstr ""
"prenestroù gant ho merdeer evit abegoù surentez."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Klask"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -76,7 +76,7 @@ msgstr "Klask"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Mont"
@@ -116,8 +116,8 @@ msgid "Database comment: "
msgstr "Evezhiadenn diwar-benn an diaz roadennoù : "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Evezhiadennoù diwar-benn an daolenn"
@@ -128,14 +128,14 @@ msgstr "Evezhiadennoù diwar-benn an daolenn"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Bann"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -143,12 +143,12 @@ msgstr "Bann"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Seurt"
@@ -160,9 +160,9 @@ msgstr "Seurt"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -172,7 +172,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Dre ziouer"
@@ -181,18 +181,18 @@ msgstr "Dre ziouer"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Liammet ouzh"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Evezhiadennoù"
@@ -203,11 +203,11 @@ msgstr "Evezhiadennoù"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -225,12 +225,12 @@ msgstr "Ket"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -240,8 +240,8 @@ msgstr "Ya"
msgid "View dump (schema) of database"
msgstr "Gwelet un ezporzhiadenn (chema) eus an diaz roadennoù"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù."
@@ -328,8 +328,8 @@ msgstr "Mont d'an diaz roadennoù eilet"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -349,8 +349,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Embann pe ezporzhiañ ur chema kar"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -360,45 +360,44 @@ msgstr "Embann pe ezporzhiañ ur chema kar"
msgid "Table"
msgstr "Taolenn"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Linennoù"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Ment"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "en implij"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Krouiñ"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Hizivadenn ziwezhañ"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Gwiriadenn ziwezhañ"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -485,15 +484,15 @@ msgstr "Implijout taolennoù"
#: db_qbe.php:663
#, php-format
msgid "SQL query on database %s :"
-msgstr "Reked SQL ouzh an diaz roadennoù %s :"
+msgstr "Reked SQL ouzh an diaz roadennoù %s : "
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Kas ar reked"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Moned nac'het"
@@ -517,7 +516,7 @@ msgstr "evel un droienn reoliek"
#: db_search.php:216
#, php-format
msgid "Search results for \"%s \" %s:"
-msgstr "Disoc'hoù ar c'hlask evit \"%s \" %s :"
+msgstr "Disoc'hoù ar c'hlask evit \"%s \" %s : "
#: db_search.php:239
#, fuzzy, php-format
@@ -529,8 +528,8 @@ msgstr[0] "%s glotadenn en daolenn %s "
msgstr[1] "%s klotadenn en daolenn %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Furchal"
@@ -606,11 +605,11 @@ msgstr "Diverket eo bet ar Gweled %s"
msgid "Table %s has been dropped"
msgstr "Diverket eo bet an daolenn %s"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Oberiant eo an heuliañ."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "N'eo ket oberiant an heuliañ."
@@ -624,7 +623,7 @@ msgstr ""
"%steulioù titouriñ%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Gwelet"
@@ -669,7 +668,7 @@ msgstr "Askañ an taolennoù gant dilerc'hioù"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -678,17 +677,18 @@ msgid "Export"
msgstr "Ezporzhiañ"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Stumm da voullañ"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Goullonderiñ"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -731,15 +731,14 @@ msgid "Tracked tables"
msgstr "Taolennoù heuliet-pizh"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Diaz roadennoù"
@@ -757,7 +756,7 @@ msgstr "Hizivaet"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Statud"
@@ -948,13 +947,13 @@ msgstr "O tiskouez ar sined"
msgid "The bookmark has been deleted."
msgstr "Diverket eo bet ar sined."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "N'haller ket lenn ar restr"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -984,7 +983,7 @@ msgstr "Dibosupl amdreiñ an arouezennoù hep levraoueg amdreiñ"
msgid "Could not load import plugins, please check your installation!"
msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Krouet eo bet ar sined %s"
@@ -1011,8 +1010,8 @@ msgstr ""
"Peurliesañ e talvez n'hallo ket PhpMyAdmin echuiñ da enporzhiañ an traoù ma "
"ne vez ket kresket ganeoc'h bevenn amzer PHP."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1128,9 +1127,9 @@ msgid "Close"
msgstr "Serriñ"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Kemmañ"
@@ -1154,7 +1153,7 @@ msgstr "Roadennoù stadegel"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Hollad"
@@ -1165,12 +1164,12 @@ msgid "Other"
msgstr "Udb all"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1249,13 +1248,13 @@ msgid "System swap"
msgstr "Takad eskemm reizhiad (swap)"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "Mio"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "Kio"
@@ -1313,27 +1312,27 @@ msgid "Connections"
msgstr "Kevreadennoù"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "o"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "Gio"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "Tio"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "Pio"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "Eio"
@@ -1375,9 +1374,9 @@ msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Hini"
@@ -1566,7 +1565,7 @@ msgstr "Displegañ SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1906,7 +1905,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1920,7 +1919,7 @@ msgstr "Kuzhat an dezverkoù klask"
msgid "Show search criteria"
msgstr "Diskouez an dezverkoù enklask"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2096,7 +2095,7 @@ msgstr "Cheñch ger-tremen"
msgid "More"
msgstr "Muioc'h"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2187,63 +2186,63 @@ msgid "December"
msgstr "Kerzu"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "C'hwe"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Meu"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mae"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Mezh"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Goue"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Eost"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Gwen"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Here"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Du"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Kzu"
@@ -2284,32 +2283,32 @@ msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Meu"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Yaou"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sad"
@@ -2451,11 +2450,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Ment an destenn"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2463,13 +2462,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar "
"c'hemennad upload_max_filesize directive e php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2477,27 +2476,27 @@ msgstr ""
"Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar "
"c'hemennad MAX_FILE_SIZE spisaet er furmskrid HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Hanter bellgarget eo bet ar restr nemetken."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Mankout a ra ur c'havlec'h padennek."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Fazi en ur skrivañ ar restr war ar bladenn."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Harzet eo bet ar pellgargañ gant an astenn."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Fazi dianav en ur bellgargañ ar restr."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2505,11 +2504,11 @@ msgstr ""
"Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2523,7 +2522,7 @@ msgstr "N'eus bet termenet meneger ebet !"
msgid "Indexes"
msgstr "Menegerioù"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2561,46 +2560,46 @@ msgstr ""
"Evit doare eo kevatal an menegerioù %1$s ha %2$s hag unan anezho a c'hallfe "
"bezañ dilamet."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Diazoù roadennoù"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servijer"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Framm"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Ensoc'hañ"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Oberiadennoù"
@@ -2679,27 +2678,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fazi"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d linenn tizhet."
msgstr[1] "%1$d linenn tizhet."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d linenn diverket."
msgstr[1] "%1$d linenn diverket."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2742,52 +2741,52 @@ msgstr "Diweredekaet eo bet %s war ar servijer MySQL-mañ."
msgid "This MySQL server does not support the %s storage engine."
msgstr "N'eo ket skoret al lusker stokañ %s gant ar servijer MySQL-mañ."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "N'eo ket bet kavet an tem %s !"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Diaz roadennoù direizh"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Anv taolenn direizh"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fazi en ur adenvel %1$s e %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Anv an daolenn %s zo %s bremañ"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "N'eus ket bet gallet enrollañ dibaboù etrefas an taolennoù"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2795,16 +2794,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "N'eus ket eus un hent reizh evit skeudennoù an tem %s !"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "N'haller ket rakwelet."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "tapit-eñ"
@@ -2856,7 +2855,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2897,13 +2896,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Other core settings"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Arventennoù pouezus all"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2914,7 +2913,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2932,7 +2931,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2945,7 +2944,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3044,75 +3043,75 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Krouiñ un argerzh"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Aradennad linennoù"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr ""
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3188,7 +3187,7 @@ msgstr "Dibab ar servijer"
msgid "Cookies must be enabled past this point."
msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3196,14 +3195,14 @@ msgstr ""
"Berzet eo kevreañ hep ger-tremen gant ar c'hefluniadur (gwelet "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Tamm obererezh ebet abaoe %s eilenn; kevreit en-dro"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Dibosupl kevreañ ouzh ar servijer MySQL"
@@ -3247,18 +3246,18 @@ msgstr "Taolennoù"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Roadennoù"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Dilerc'hioù"
@@ -3369,8 +3368,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Reked SQL"
@@ -3380,81 +3379,81 @@ msgstr "Reked SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "respontet eo bet gant MySQL : "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "DIbosupl kevreañ d'ar c'hadarnataer SQL !"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Displegañ SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "N'eo ket dav displegañ SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Hep kod PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Krouiñ kod PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Freskaat"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "N'eo ket dav kadarnaat SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Kadarnaat SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Kemmañ ar reked-mañ enlinenn"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Enlinenn"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "O profilañ"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sul"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%A %d %B %Y da %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s deiz, %s eur, %s munut ha %s eilenn"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3462,7 +3461,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Kregiñ"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3471,7 +3470,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Kent"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3480,7 +3479,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "War-lerc'h"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3488,44 +3487,44 @@ msgctxt "Last page"
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Mont d'an diaz roadennoù "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Klikañ evit gwintañ"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Furchal en hoc'h urzhiataer"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet."
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "N'eus restr ebet da enporzhiañ"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Seveniñ"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Moullañ"
@@ -3609,68 +3608,68 @@ msgstr "Kement dibab zo a-us"
msgid "neither of the above"
msgstr "Dibab ebet a-zouez ar re zo a-us"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "N'eo ket un niver pozitivel"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "N'eo ket un niver annegativel"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Niverenn borzh direizh"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Talvoud direizh"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Rankout a ra an talvoud bezañ par da pe bihanoc'h eget %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Roadennoù a vank evit %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "N'eo ket hegerz"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" zo rekis dezhañ an astenn %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "Ne'z aio ket an enporzhiañ en-dro, un arc'hwel a vank (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "Ne'z aio ket an ezporzhiañ en-dro, un arc'hwel a vank (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Diweredekaet eo kadarnataer SQL"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "N'eo ket bet kavet an astenn SOAP"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "%s d'ar muiañ"
@@ -3690,7 +3689,7 @@ msgid "Set value: %s"
msgstr "Lakaat an talvoud da %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Adlakaat an talvoud dre ziouer"
@@ -3996,7 +3995,7 @@ msgid "Character set of the file"
msgstr "Strobad arouezennoù ar restr"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Furmad"
@@ -4095,7 +4094,7 @@ msgstr "Alc'hwez an dikedenn"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Seurt MIME"
@@ -4220,8 +4219,8 @@ msgstr "Personelaat an dibarzhioù dre ziouer"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4657,108 +4656,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4766,434 +4769,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5202,354 +5205,354 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show indexes"
msgid "Show hint"
msgstr "Diskouez menegerioù"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Kuzhat ar voest rekedoù SQL"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5557,28 +5560,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5588,76 +5591,76 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5665,59 +5668,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5738,84 +5741,84 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not open file: %s"
msgid "Could not connect to Drizzle server"
msgstr "N'eus ket bet gallet digeriñ ar restr : %s"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5835,21 +5838,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5911,7 +5914,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -6063,26 +6066,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Other core settings"
msgid "committed on %1$s by %2$s"
msgstr "Arventennoù pouezus all"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Other core settings"
msgid "authored on %1$s by %2$s"
@@ -6747,18 +6750,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6960,15 +6962,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)."
@@ -7064,7 +7058,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7421,7 +7415,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7518,10 +7512,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7580,7 +7574,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7620,8 +7614,8 @@ msgid "Edit event"
msgstr ""
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Fazi en ur seveniñ ar reked"
@@ -7681,7 +7675,7 @@ msgstr "Ensoc'hadennoù sevenet"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7743,7 +7737,7 @@ msgstr ""
"c'hwitañ ! Grit gant an astenn 'mysqli' gwellaet, kuit da gaout kudennoù."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Seurt argerzh faziek : \"%s\""
@@ -7814,57 +7808,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh"
msgstr[1] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Disoc'hoù seveniñ an argerzh %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Seveniñ an argerzh"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -8058,7 +8052,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -8155,12 +8149,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
-msgstr ""
+msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8206,7 +8200,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8215,11 +8209,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8305,13 +8299,13 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Oberiant eo an heuliañ."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8319,36 +8313,36 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Inside column:"
msgid "Move column"
msgstr "Er bann :"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8356,73 +8350,73 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr ""
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Klask"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8546,11 +8540,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8560,8 +8554,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8721,18 +8715,24 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Invalid table name"
+msgid "Filter databases by name"
+msgstr "Anv taolenn direizh"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Invalid table name"
msgid "Filter tables by name"
msgstr "Anv taolenn direizh"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -9846,7 +9846,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Personelaat ar bajenn deraouiñ"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -10951,37 +10951,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10990,39 +10990,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11030,21 +11030,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11053,7 +11053,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11063,37 +11063,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11101,8 +11101,8 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11134,21 +11134,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11275,7 +11283,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11476,45 +11484,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show all"
msgid "Showing tables"
msgstr "Diskouez pep tra"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11808,29 +11816,29 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Kuzhat an dezverkoù klask"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index 2b199063fa..57e6c59108 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,15 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-03-12 09:12+0100\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:21+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: bosnian \n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -19,11 +21,11 @@ msgid "Show all"
msgstr "Prikaži sve"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Broj strane:"
@@ -38,30 +40,30 @@ msgstr ""
"prozorima zbog sigurnosnih podešavanja"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Pretraživanje"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +73,7 @@ msgstr "Pretraživanje"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kreni"
@@ -106,11 +108,11 @@ msgstr "Baza %s je odbačena."
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "Komentar baze:"
+msgstr "Komentar baze: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentari tabele"
@@ -121,16 +123,16 @@ msgstr "Komentari tabele"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Imena kolona"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +140,12 @@ msgstr "Imena kolona"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tip"
@@ -155,9 +157,9 @@ msgstr "Tip"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +169,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Podrazumjevano"
@@ -176,18 +178,18 @@ msgstr "Podrazumjevano"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Veze ka"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentari"
@@ -198,11 +200,11 @@ msgstr "Komentari"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +222,12 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +237,8 @@ msgstr "Da"
msgid "View dump (schema) of database"
msgstr "Prikaži sadržaj (shemu) baze"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Tabele nisu pronađene u bazi."
@@ -327,8 +329,8 @@ msgstr "Pređi na kopiranu tabelu"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -353,8 +355,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Relaciona shema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -364,45 +366,44 @@ msgstr "Relaciona shema"
msgid "Table"
msgstr "Tabela"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Redova"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Veličina"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "se koristi"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Napravljeno"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Posljednja izmjena"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Posljednja provjera"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -497,13 +498,13 @@ msgstr "Koristi tabele"
msgid "SQL query on database %s :"
msgstr "SQL upit na bazi %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Izvrši SQL upit"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Ulaz nije dozvoljen"
@@ -538,8 +539,8 @@ msgstr[0] "%s pogodaka unutar tabele %s "
msgstr[1] "%s pogodaka unutar tabele %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Pregled"
@@ -625,11 +626,11 @@ msgstr "Polje %s je obrisano"
msgid "Table %s has been dropped"
msgstr "Tabela %s je odbačena"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -641,7 +642,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -687,7 +688,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -696,17 +697,18 @@ msgid "Export"
msgstr "Izvoz"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Za štampu"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Isprazni"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -753,15 +755,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Baza podataka"
@@ -780,7 +781,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -985,13 +986,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Obilježivač je upravo obrisan."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Datoteku nije moguće pročitati"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1014,7 +1015,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1036,8 +1037,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1160,9 +1161,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Promeni"
@@ -1189,7 +1190,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ukupno"
@@ -1200,12 +1201,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1292,13 +1293,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1362,27 +1363,27 @@ msgid "Connections"
msgstr "Konekcije"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "bajta"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1427,9 +1428,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "nema"
@@ -1615,7 +1616,7 @@ msgstr "Objasni SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Vrijeme"
@@ -1975,7 +1976,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1991,7 +1992,7 @@ msgstr "SQL upit"
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2177,7 +2178,7 @@ msgstr "Promeni lozinku"
msgid "More"
msgstr "Pon"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2285,27 +2286,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2313,37 +2314,37 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "dec"
@@ -2392,32 +2393,32 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sub"
@@ -2576,11 +2577,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2588,47 +2589,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2642,7 +2643,7 @@ msgstr "Ključ nije definisan!"
msgid "Indexes"
msgstr "Ključevi"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2679,46 +2680,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Baze"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Novi zapis"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operacije"
@@ -2800,27 +2801,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Greška"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2866,51 +2867,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Pretraživanje baze"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "Pretraživanje baze"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabeli %s promjenjeno ime u %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2918,16 +2919,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2979,7 +2980,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3020,12 +3021,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Verzija servera"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3036,7 +3037,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Verzija servera"
@@ -3053,7 +3054,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3066,7 +3067,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3164,77 +3165,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Napravi novi ključ"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Linije se završavaju sa"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Ukupno"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3307,20 +3308,20 @@ msgstr "Izbor servera"
msgid "Cookies must be enabled past this point."
msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Ne mogu da se prijavim na MySQL server"
@@ -3364,18 +3365,18 @@ msgstr "Tabele"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Podaci"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Prekoračenje"
@@ -3486,8 +3487,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL upit"
@@ -3497,83 +3498,83 @@ msgstr "SQL upit"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL kaže: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Preskoči objašnjavanje SQL-a"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "bez PHP koda"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Napravi PHP kod"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Preskoči provjeru SQL-a"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Provjeri SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekundi"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Dodaj novo polje"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3581,7 +3582,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Početak"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3590,7 +3591,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodna"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3599,7 +3600,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Slijedeći"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3607,45 +3608,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Kraj"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Pređi na bazu "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "direkcija za slanje web servera "
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Direkcija koju ste izabrali za slanje nije dostupna"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Štampaj"
@@ -3738,72 +3739,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Promjenljiva"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Veza nije pronađena"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3822,7 +3823,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4111,7 +4112,7 @@ msgid "Character set of the file"
msgstr "Karakter set datoteke:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4225,7 +4226,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-tipovi"
@@ -4357,8 +4358,8 @@ msgstr "Opcije za izvoz baze"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV format"
@@ -4794,110 +4795,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analiziraj tabelu"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4905,451 +4910,451 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Ograničenja resursa"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Promijeni redoslijed u tabeli"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Promjeni ime tabele u "
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Konekcije"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bilo koji host"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Nema tabela"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Baza ne postoji"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5358,371 +5363,371 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Baza podataka"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiziraj tabelu"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Popravi tabelu"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Prikazujem komentare kolone"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Ime"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "Verzija servera"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Prikaži informacije o PHP-u"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Prikaži tabele"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Prikaži mrežu"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Prikaži kompletne upite"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Statistike reda"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5730,28 +5735,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5761,81 +5766,81 @@ msgstr ""
msgid "Password"
msgstr "Lozinka"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Korisničko ime:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dodaj/obriši kolonu"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Podrazumjevano"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5843,59 +5848,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5916,82 +5921,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opcije za izvoz baze"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6011,21 +6016,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6090,7 +6095,7 @@ msgstr "Napravi novu stranu"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Ime"
@@ -6277,25 +6282,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Verzija servera"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Verzija servera"
@@ -7009,18 +7014,17 @@ msgid "Display MIME types"
msgstr "Dostupni MIME-tipovi"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Vrijeme kreiranja"
@@ -7231,15 +7235,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL rezultat"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generirao"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
@@ -7334,7 +7330,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7582,7 +7578,7 @@ msgstr "Švedski"
#: libraries/mysql_charsets.lib.php:311 libraries/mysql_charsets.lib.php:408
msgid "Thai"
-msgstr "Tajlandski "
+msgstr "Tajlandski"
#: libraries/mysql_charsets.lib.php:314 libraries/mysql_charsets.lib.php:402
msgid "Turkish"
@@ -7701,7 +7697,7 @@ msgstr "Pravljenje PDF-ova"
msgid "Displaying Column Comments"
msgstr "Prikazujem komentare kolone"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Tranformacije čitača"
@@ -7800,10 +7796,10 @@ msgid "Variable"
msgstr "Promjenljiva"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Vrijednost"
@@ -7863,7 +7859,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7901,8 +7897,8 @@ msgid "Edit event"
msgstr "Poslato"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7964,7 +7960,7 @@ msgstr "Kompletan INSERT (sa imenima polja)"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8020,7 +8016,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8105,57 +8101,57 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcija"
@@ -8355,7 +8351,7 @@ msgstr "Sadržaj"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributi"
@@ -8464,12 +8460,12 @@ msgid "Toggle scratchboard"
msgstr "Uključuje/isključuje scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8519,7 +8515,7 @@ msgstr "Izvrši SQL upit(e) na bazi %s"
msgid "Run SQL query/queries on database %s"
msgstr "Izvrši SQL upit(e) na bazi %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8530,11 +8526,11 @@ msgstr ""
msgid "Columns"
msgstr "Imena kolona"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Obilježi SQL-upit"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8560,7 +8556,7 @@ msgstr "Vidi samo"
#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
msgid "web server upload directory"
-msgstr "direkcija za slanje web servera "
+msgstr "direkcija za slanje web servera"
#: libraries/sqlparser.lib.php:136
msgid ""
@@ -8633,12 +8629,12 @@ msgstr ""
"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane "
"neophodne PHP ekstenzije opisane u %sdokumentaciji%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8656,7 +8652,7 @@ msgstr ""
"(\"'\") koristite ih u \"izbjegnutom\" (escaped) obliku (na primer '\\\\xyz' "
"ili 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8664,19 +8660,19 @@ msgstr ""
"Za podrazumjevanu vrijednost, unesite samo jednu vrijednost, bez kosih crta "
"ili navodnika u ovom obliku: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Ključ"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Dodaj/obriši kolonu"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8685,11 +8681,11 @@ msgstr ""
"Za listu dostupnih opcija transformacije i njihove transformacije MIME-"
"tipova, kliknite na %sopise transformacija%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opcije transformacije"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8701,79 +8697,79 @@ msgstr ""
"apostrof (\"'\") u te vrijednosti, stavite obrnutu kosu crtu ispred njih (na "
"primjer '\\\\xyz' ili 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "nema"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primarni"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Tekst ključ"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Poslije %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Dodaj novo polje"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Morate izabrati bar jednu kolonu za prikaz"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "Operacije"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Pretraživanje"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8949,11 +8945,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8963,8 +8959,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9139,19 +9135,25 @@ msgstr ""
msgid "No databases"
msgstr "Baza ne postoji"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Promijeni redoslijed u tabeli"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Promijeni redoslijed u tabeli"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Napravi novu stranu"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Izaberite bazu"
@@ -9771,7 +9773,7 @@ msgstr "Privilegije vezane za tabele"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom "
+msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom"
#: server_privileges.php:711
msgid "Administration"
@@ -10340,7 +10342,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Ime"
@@ -11453,37 +11455,37 @@ msgstr ""
msgid "Show form"
msgstr "Prikaži boju"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11492,39 +11494,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11532,21 +11534,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11555,7 +11557,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11565,37 +11567,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11605,8 +11607,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Baza ne postoji"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Pregledaj strane vrijednosti"
@@ -11640,21 +11642,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Provjeri SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL rezultat"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generirao"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Naziv"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Izabrani korisnici su uspješno obrisani."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11788,7 +11798,7 @@ msgstr "Vrijednost"
msgid "Table %s already exists!"
msgstr "Korisnik %s već postoji!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Tabela %s je odbačena"
@@ -11923,7 +11933,7 @@ msgstr "Opcije tabele"
#: tbl_operations.php:362
msgid "Rename table to"
-msgstr "Promjeni ime tabele u "
+msgstr "Promjeni ime tabele u"
#: tbl_operations.php:544
msgid "Copy table to (database. table):"
@@ -12007,45 +12017,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Proveri referencijalni integritet:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Prikaži tabele"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Zauzeće"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Zauzeće"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektivne"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistike reda"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamički"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Dužina reda"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Veličina reda"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12352,30 +12362,30 @@ msgstr ""
msgid "Create version"
msgstr "Verzija servera"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL upit"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index b478dff86d..d51122be9a 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-03-28 14:16+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: catalan \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Mostra tot"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Número de pàgina:"
@@ -39,30 +39,30 @@ msgstr ""
"finestres per la teva configuració de seguretat."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Cerca"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Cerca"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Executa"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Comentaris de la base de dades: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Comentaris de la taula"
@@ -124,14 +124,14 @@ msgstr "Comentaris de la taula"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Columna"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Columna"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tipus"
@@ -156,9 +156,9 @@ msgstr "Tipus"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nul"
@@ -168,7 +168,7 @@ msgstr "Nul"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Defecte"
@@ -177,18 +177,18 @@ msgstr "Defecte"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Enllaços a"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Comentaris"
@@ -199,11 +199,11 @@ msgstr "Comentaris"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "No"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Si"
msgid "View dump (schema) of database"
msgstr "Veure el bolcat (esquema) de la base de dades"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Base de dades sense taules."
@@ -324,8 +324,8 @@ msgstr "Canvia a la base de dades copiada"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Edita o exporta l'esquema relacional"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "Edita o exporta l'esquema relacional"
msgid "Table"
msgstr "Taula"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Fila"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Mida"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "en ús"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Creació"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Darrera actualització"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Darrera comprovació"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "Usa Taules"
msgid "SQL query on database %s :"
msgstr "Consulta SQL a la base de dades %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Executa consulta"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Accés denegat"
@@ -525,8 +524,8 @@ msgstr[0] "%s resultat a la taula %s "
msgstr[1] "%s resultats a la taula %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Navega"
@@ -602,11 +601,11 @@ msgstr "Vista %s esborrada"
msgid "Table %s has been dropped"
msgstr "S'ha esborrat la taula %s"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "El seguiment està actiu."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "El seguiment no està actiu."
@@ -619,7 +618,7 @@ msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vista"
@@ -664,7 +663,7 @@ msgstr "Comprova taules desfragmentades"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -673,17 +672,18 @@ msgid "Export"
msgstr "Exporta"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Imprimeix vista"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Buida"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -726,15 +726,14 @@ msgid "Tracked tables"
msgstr "Taules seguides"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Base de dades"
@@ -752,7 +751,7 @@ msgstr "Actualitzat"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Estat"
@@ -943,13 +942,13 @@ msgstr "Mostrant consultes desades"
msgid "The bookmark has been deleted."
msgstr "S'ha esborrat la consulta desada."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "No es pot llegir l'arxiu"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -980,7 +979,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"No es poden carregar les extensions d'importació, comprova l'instal.lació!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "%s creat com a Consulta desada"
@@ -1007,8 +1006,8 @@ msgstr ""
"indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que "
"incrementeu els límits de temps de php."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1119,9 +1118,9 @@ msgid "Close"
msgstr "Tanca"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edita"
@@ -1145,7 +1144,7 @@ msgstr "Dades estàtiques"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1156,12 +1155,12 @@ msgid "Other"
msgstr "Altre"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1245,13 +1244,13 @@ msgid "System swap"
msgstr "Intercanvi del sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1309,27 +1308,27 @@ msgid "Connections"
msgstr "Connexions"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1369,9 +1368,9 @@ msgstr "Afegeix al menys una variable a la serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Res"
@@ -1562,7 +1561,7 @@ msgstr "Explicar sortida"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Temps"
@@ -1886,7 +1885,7 @@ msgstr "%d no és un num. vàlid de fila."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1900,7 +1899,7 @@ msgstr "Amaga el criteri de cerca"
msgid "Show search criteria"
msgstr "Mostrar criteri de cerca"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Cerca de zoom"
@@ -2068,7 +2067,7 @@ msgstr "Canvi de contrasenya"
msgid "More"
msgstr "Més"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2155,63 +2154,63 @@ msgid "December"
msgstr "Desembre"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Des"
@@ -2249,32 +2248,32 @@ msgid "Sun"
msgstr "Diu"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Dll"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Dma"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Dcr"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Dij"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Div"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Dis"
@@ -2414,11 +2413,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Tamany de lletra"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2426,12 +2425,12 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2439,27 +2438,27 @@ msgstr ""
"El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al "
"formulari HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Només s'ha pujat parcialment l'arxiu."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "No es troba la carpeta temporal."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Error en gravar l'arxiu al disc."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Pujada de l'arxiu aturada per l'extensió."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Error desconegut al pujar l'arxiu."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2467,11 +2466,11 @@ msgstr ""
"Error movent l'arxiu pujat, consulta la [a@./Documentation."
"html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2485,7 +2484,7 @@ msgstr "No s'ha definit l'índex!"
msgid "Indexes"
msgstr "Indexos"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2523,46 +2522,46 @@ msgstr ""
"Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria "
"esborrar."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Bases de dades"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Estructura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insereix"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operacions"
@@ -2641,27 +2640,27 @@ msgstr ""
msgid "Engines"
msgstr "Motors"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Error"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d fila afectada."
msgstr[1] "%1$d files afectades."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d fila esborrada."
msgstr[1] "%1$d files esborrades."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2706,53 +2705,53 @@ msgstr "%s s'ha desactivat en aquest servidor MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "Estat de taula desconegut "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Base de dades origen"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s no trobat!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Base de dades incorrecte"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Nom de taula incorrecte"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Error reanomenant la taula %1$s a %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "La taula %s ha canviat de nom a %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2760,16 +2759,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "El camí de les imatges del tema %s és incorrecte!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "No hi ha vista prèvia disponible."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "agafa"
@@ -2821,7 +2820,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2862,13 +2861,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Crea versió %s de %s.%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2879,7 +2878,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2897,7 +2896,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2910,7 +2909,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3009,77 +3008,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Crea un nou índex"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Cadena de línies"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial column"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Columna espacial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3155,7 +3154,7 @@ msgid "Cookies must be enabled past this point."
msgstr ""
"A partir d'aquest punt és necessari tenir les galetes -cookies- activades."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3163,14 +3162,14 @@ msgstr ""
"La configuració prohibeix la connexió sense contrasenya (veure "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Sense activitat des de fa %s segons o més, entra de nou"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "No podem connectar amb el servidor MySQL"
@@ -3214,18 +3213,18 @@ msgstr "Taules"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Dades"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Defragmentat"
@@ -3335,8 +3334,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Consulta SQL"
@@ -3346,145 +3345,145 @@ msgstr "Consulta SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL diu: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "No es pot connectar al validador SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Explica SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Salta l'explicació de l'SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Sense codi PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Crea codi PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Refresca"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Salta la Validació de l'SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Valida l'SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Editar aquesta consulta en línia"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "En línia"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Perfils"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Diu"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a les %H:%M:%S"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dies, %s hores, %s minuts i %s segons"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Falta paràmetre:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Inici"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Pàgina anterior"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Pàgina següent"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Darrera pàgina"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Vés a la base de dades "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Prem per canviar"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Navega al teu ordinador:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
"Selecciona des del directori de pujada d'arxius del servidor web %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "No està disponible el directori indicat per pujar arxius"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "No hi ha cap arxiu per pujar"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Imprimeix"
@@ -3568,68 +3567,68 @@ msgstr "ambdós anteriors"
msgid "neither of the above"
msgstr "cap dels anteriors"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "No és un nombre positiu"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "No és un nombre no-negatiu"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Numero de port incorrecte"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Valor incorrecte"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "El valor ha de ser igual o menor que %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Falten dades a %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "no disponible"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" requereix l'extensió %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "l'importació no funciona, falta la funció (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "l'exportació no funciona, falta la funció (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Validador SQL desactivat"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "No s'ha trobat l'extensió SOAP"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "màxim %s"
@@ -3648,7 +3647,7 @@ msgid "Set value: %s"
msgstr "Estableix valor: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Restaura el valor per defecte"
@@ -3946,7 +3945,7 @@ msgid "Character set of the file"
msgstr "Joc de caràcters de l'arxiu"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4045,7 +4044,7 @@ msgstr "Etiqueta de clau"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Tipus MIME"
@@ -4170,8 +4169,8 @@ msgstr "Configura les opcions predeterminades"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4609,14 +4608,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Mínim nombre de taules mostrades a la caixa de filtre de taules"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Mínim nombre de taules mostrades a la caixa de filtre de taules"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Text que separa bases de dades en diferents nivells d'arbre"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Separador per l'arbre de bases de dades"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4624,39 +4629,39 @@ msgstr ""
"Només versió lleugera; mostrar bases de dades en arbre (determinat pel "
"separador definit tot seguit)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Mostra les bases de dades en arbre"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Desactiva aixó si vols veure totes les bases de dades de cop"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Usar versió lleugera"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Màxima profunditat de l'arbre de taules"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Text que separa taules en diferents nivells d'arbre"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Separador d'arbre de taules"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL on apunta el logo al marc de navegació"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Enllaç d'URL al logo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4664,38 +4669,38 @@ msgstr ""
"Obrir la pàgina enllaçada a la finestra principal ([kbd]main[/kbd]) o bé a "
"una de nova ([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Destí d'enllaç al logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Resalta el servidor sota el cursor del ratolí"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Activa resaltat"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Màxim nombre de taules usades recentment; 0 per desactivar"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Taules usades recentment"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Màxim nombre de caràcters usats en qualsevol columna no-numèrica a la vista "
"de navegació"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Limit de caràcters de la columna"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4706,11 +4711,11 @@ msgstr ""
"actual. Establint aixó a FALSE fa més fàcil oblidar desconectar-se d'altres "
"servidors quan estàs connectat a més d'un."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Esborra totes les galetes al desconnectar"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4718,11 +4723,11 @@ msgstr ""
"Defineix si l'anterior autenticació s'ha de recuperar o no al mode "
"d'autenticació per galetes"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Nom d'usuari de recuperació"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4734,51 +4739,51 @@ msgstr ""
"la sessió actual, i s'esborraran tant aviat com tanquis la finestra del "
"navegador. Aixó es recomana per a entorns no confiables."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Emmagatzema les galetes de connexió"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
"Defineix durant quant de temps (en segons) es vàlida una galeta "
"d'autenticació"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Validesa de l'autenticació per galetes"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Doble tamany de textareas per a columnes LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "textarea més gran per a LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Màxim nombre de caràcters usats quan es mostra una consulta SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Tamany màxim de SQL mostrat"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Els usuaris no poden establir un valor més gran"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Màxim nombre de bases de dades mostrades al marc esquerre i a la llista"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Màxim de bases de dades"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4788,19 +4793,19 @@ msgstr ""
"conté més files, es mostraran els enllaços "Anterior" i ""
"Següent"."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Màxim nombre de files a mostrar"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Màxim nombre de taules mostrades a la llista"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Màxim de taules"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4808,11 +4813,11 @@ msgstr ""
"Desactiva l'avís per defecte que es mostra si no hi és mcrypt per "
"l'autenticació per cookies"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "avís mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4820,45 +4825,45 @@ msgstr ""
"El nombre d'octets que una ordre està autoritzada a reservar, ex. [kbd]32M[/"
"kbd] ([kbd]0[/kbd] per no posar límit)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Límit de memoria"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Aixó són enllaços a Edició, Còpia i Esborrat"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Usa l'ordre natural per ordenar els noms de taules i bases de dades"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Ordre natural"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Usa només icones, només text o bé ambdós"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Barra de navegació amb icones"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"utilitza la memòria cau de sortida per GZip per incrementar la velocitat en "
"transferències HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Memòria cau de sortida per GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4866,19 +4871,19 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. ordre descendent per camps de tipus TIME, DATE, "
"DATETIME i TIMESTAMP, ordre descendent ascendent a la resta"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Ordre de clasificació predeterminat"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Utilitza connexions persistents a bases de dades MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Connexions persistents"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4888,23 +4893,23 @@ msgstr ""
"l'estructura de la base de dades, si qualsevol de les taules necessàries per "
"a l'infraestructura de taules enllaçades de phpMyAdmin no s'ha pogut trobar"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Falten taules de l'infraestructura de taules enllaçades de phpMyAdmin"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Icones d'operacions de taula"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Desactiva l'edició en columnes tipus BLOB i BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Protegeix les columnes de contingut binari"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4915,115 +4920,115 @@ msgstr ""
"fan servir rutines JS per mostrar l'historial de consultes (es perd al "
"tancar la finestra)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Historial permanent de consultes"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Quàntes consultes s'han de desar a l'historial"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Tamany de l'historial de consultes"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Pestanya que es mostra al entrar a una nova finestra de consultes"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Pestanya de finestra de consultes predeterminada"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Alçada de la finestra de consultes (en píxels)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Alçada de la finestra de consultes"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Amplada de la finestra de consultes (en pixels)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Amplada de la finestra de consultes"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Selecciona quines funcions s'usaràn per a conversions de jocs de caràcters"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Motor d'enregistrament"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Recordar l'ordenació de les taules"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Repeteix les capçeleres cada X cel.les, [kbd]0[/kbd] desactiva la funció"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Repeteix capçeleres"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Directori del servidor on pots desar les exportacions"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Directori de desades"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Deixa en blanc si no l'utilitzes"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Ordre d'autenticació del servidor"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Deixa en blanc per als predeterminats"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Regles d'autenticació del servidor"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Permetre connexions sense contrasenya"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Permet la connexió de root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
"Nom del Domini HTTP -HTTP Basic Auth Realm- per a mostrar a l'autenticació "
"HTTP"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Domini HTTP"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5033,19 +5038,19 @@ msgstr ""
"maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: /"
"etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Arxiu de configuració SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Mètode d'autenticació a usar"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Tipus d'autenticació"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5053,11 +5058,11 @@ msgstr ""
"Deixa en blanc per desactivar les [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"consultes desades[/a], suggerit: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Taula de consultes desades"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5065,31 +5070,31 @@ msgstr ""
"Deixa en blanc per no usar comentaris de columna o tipus mime, suggerit: "
"[kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Taula d'informació de columna"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Connexió comprimida al servidor MySQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Connexió comprimida"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Cóm connectar al servidor, deixa [kbd]tcp[/kbd] si no estàs segur"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Tipus de connexió"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Contrasenya de l'usuari de control"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5097,29 +5102,29 @@ msgstr ""
"Usuari MySQL especial configurat amb permisos restringits, més informació "
"disponible al [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Usuari de control"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Servidor de control"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Comptar les taules al mostrar la llista de bases de dades"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Comptar les taules"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5127,11 +5132,11 @@ msgstr ""
"Deixa en blanc per desactivar el suport del Dissenyador, suggerit: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Taula del dissenyador"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5139,29 +5144,29 @@ msgstr ""
"Més informació a [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] i [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Desactiva l'ús d'INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"La extensió de PHP utilitzada; hauries de fer servir mysqli si ho tens "
"suportat"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Extensió PHP a usar"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Amagar les bases de dades que compleixin una expresió regular (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Amagar bases de dades"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5169,41 +5174,41 @@ msgstr ""
"Deixa en blanc per desactivar el suport d'historial de consultes SQL, "
"suggerit: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Taula d'historial de consultes SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Nom del servidor ón MySQL és en marxa"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Nom del servidor"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL de desconnexió"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Màxim nombre de preferències de taules a desar"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Intentar connectar sense contrasenya"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Connexió sense contrasenya"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5217,30 +5222,30 @@ msgstr ""
"entrant els seus noms en ordre i usant [kbd]*[/kbd] al final per mostrar la "
"resta en ordre alfabètic."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Mostra només les bases de dades de la llista"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Deixa en blanc si no utilitzes l'autenticació config"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Contrasenya autenticació config"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "Esquema PDF: taula de pàgines"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5251,20 +5256,20 @@ msgstr ""
"tenir informació més completa. Deixa en blanc per no utilitzar. Suggerit: "
"[kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Nom de base de dades"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Port ón el servidor MySQL està escoltatt, deixa en blanc per al predeterminat"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Port del servidor"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5272,11 +5277,11 @@ msgstr ""
"Deixa en blanc per treure la \"persistència\" de taules usades recentment "
"entre sessions, suggerit: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Taula usada recentment"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5284,19 +5289,19 @@ msgstr ""
"Deixa en blanc per desactivar els [a@http://wiki.phpmyadmin.net/pma/relation]"
"enllaços de relacions[/a], suggerit: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Taula de relacions"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Ordre SQL per obtenir les bases de dades disponibles"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Ordre SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5304,44 +5309,44 @@ msgstr ""
"Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus "
"d'autenticació[/a] per veure exemples"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Nom de sessió signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL signon"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Sócol ón el servidor MySQL està escoltant, deixa en blanc per al "
"predeterminat"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Sócol del servidor"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Activa SSL per la connexió amb el servidor MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Usa SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Esquema PDF: taula de coordinades"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5349,11 +5354,11 @@ msgstr ""
"Taula per descriure les columnes a mostrar, deixa en blanc per desactivar; "
"suggerit: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Taula de descripció de columnes"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5361,11 +5366,11 @@ msgstr ""
"Deixa en blanc per desactivar la \"persistència\" de preferències "
"d'interfase de taules entre sessions, suggerit: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Preferències d'interfase de taula"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5373,11 +5378,11 @@ msgstr ""
"Si una instrucció DROP DATABASE IF EXISTS s'afegirà com a primera línia en "
"el registre a l'hora de crear una base de dades."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Afegir DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5385,11 +5390,11 @@ msgstr ""
"Si una instrucció DROP TABLE IF EXISTS s'afegirà com a primera línia en el "
"registre a l'hora de crear una taula."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Afegir DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5397,21 +5402,21 @@ msgstr ""
"Si una instrucció DROP VIEW IF EXISTS s'afegirà com a primera línia en el "
"registre a l'hora de crear una vista."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Afegir DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Defineix la llista d'instruccions que l'auto-creació fa servir per a noves "
"versions."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Instruccions a seguir"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5419,11 +5424,11 @@ msgstr ""
"Deixa en blanc per desactivar el suport de seguiment de consultes SQL, "
"suggerit: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Taula de seguiment de consultes SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5431,11 +5436,11 @@ msgstr ""
"SI el mecanisme de seguiment crearà versions per a taules i vistes "
"automàticament."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Crear versions automàticament"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5443,15 +5448,15 @@ msgstr ""
"Deixa en blanc per no desar les preferències de l'usuari en base de dades, "
"suggerit: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Taula de preferències de l'usuari"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Usuari per autenticació config"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5459,21 +5464,21 @@ msgstr ""
"Descripció per a l'usuari d'aquest servidor. Deixar en blanc per mostrar el "
"nom del servidor en lloc seu."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Nom explicatiu d'aquest servidor"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Si a un usuari se l'hauria de mostrar el botó "mostrar totes (les files)"
"""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Permet mostrar totes les files"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5483,55 +5488,55 @@ msgstr ""
"a que la contrasenya està inclosa al arxiu de configuració; aixó no limita "
"la posibilitat d'executar la mateixa ordre directament"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Mostra el formulari de canvi de contrasenya"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Mostra el formulari de creació de base de dades"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Mostra més accions"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Mostra l'estat del mestre -show master status-"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Mostrar direcció de visualització"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5539,27 +5544,27 @@ msgstr ""
"Defineix si els tipus de camps han d'aparèixer en un principi en el mode "
"d'edició/inserció"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Mostra tipus de camps"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Mostra els camps de funció en modes edició/inserció"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Mostra els camps de funció"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Mostra ajudes"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5567,41 +5572,41 @@ msgstr ""
"Mostra l'enllaç a la sortida de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Mostra l'enllaç a phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Mostra informació detallada del servidor MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Defineix si s'han de mostrar les consultes SQL creades per phpMyAdmin"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Mostra consultes SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Mantenir el quadre de consultes"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Permet mostrar estadístiques de base de dades i de taula (ex. espai usat)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Mostra estadístiques"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5609,11 +5614,11 @@ msgstr ""
"Si les ajudes estàn activades i s'ha establert un comentari per a la base de "
"dades, alternarà el comentari i el nom real"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Mostra comentari de la base de dades en lloc del seu nom"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5625,30 +5630,30 @@ msgstr ""
"['LeftFrameTableSeparator'], així només la carpeta s'anomena com l'àlies, el "
"nom de la taula roman intacte"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Mostra comentari de taula en lloc del seu nom"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Mostra comentaris de taula en ajudes"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Marca les taules en ús i permet mostrar les bases de dades amb taules "
"bloquejades"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Salta taules bloquejades"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Necessita activar el SQL Validator"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5658,7 +5663,7 @@ msgstr "Necessita activar el SQL Validator"
msgid "Password"
msgstr "Contrasenya"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5666,11 +5671,11 @@ msgstr ""
"[strong]Atenció:[/strong] Necessita l'extensió de PHP SOAP o bé instal.lar "
"PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Activar SQL Validator"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5678,20 +5683,20 @@ msgstr ""
"Si tens un nom d'usuari, especifíca'l aqui (per defecte és [kbd]anonymous[/"
"kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Nom d'usuari"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Si es detecta Suoshin, es mostra un avís a la pàgina principal"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "avís Suoshin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5699,11 +5704,11 @@ msgstr ""
"Tamany de textarea (columnes) en mode d'edició, aquest valor s'augmentarà "
"per a textareas de consultes SQL (*2) i per finestres de consultes (*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Columnes per a textareas"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5711,32 +5716,32 @@ msgstr ""
"Tamany de textarea (files) en mode d'edició, aquest valor s'augmentarà per a "
"textareas de consultes SQL (*2) i per finestres de consultes (*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Files per a textareas"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
"Títol de la finestra del navegador quan es selecciona una base de dades"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Títol de la finestra del navegador quan no hi ha res seleccionat"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Títol per defecte"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Títol de la finestra del navegador quan es selecciona un servidor"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Títol de la finestra del navegador quan es selecciona una taula"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5748,27 +5753,27 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) procedent del proxy 1.2.3.4:[br][kbd]"
"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Llista de proxies confiables per autoritzar/prohibir IP"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Directori al servidor ón pots pujar arxius per importar"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Directori de pujades"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Permet cercar dins de tota la base de dades"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Usa cerca de base de dades"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5776,29 +5781,29 @@ msgstr ""
"Quan està desactivada, els usuaris no poden configurar qualsevol de les "
"següents opcions, independentment de la casella de selecció a la dreta"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Activa la pestanya del Desenvolupador en les opcions"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Comprova la darrera versió"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Activa la comprovació de la darrera versió a la pàgina principal de "
"phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Comprovació de versió"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5806,7 +5811,7 @@ msgstr ""
"Activa la compressió [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/"
"a] per a les operacions d'importació i exportació"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5827,82 +5832,82 @@ msgid "Signon authentication"
msgstr "autenticació Signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV usant LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Full de càlcul Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Ràpid"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Usuari"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opcions d'exportació de bases de dades"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV per dades de MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Text format Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "No es pot connectar al servidor Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "No es pot connectar al servidor MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Nom d'usuari buit al usar el métode d'autenticació config"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Nom de sessió signon buit al usar el métode d'autenticació signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "URL signon buida al usar el métode d'autenticació signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Control d'usuari de phpMyAdmin buit al usar pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Control de contrasenya de phpMyAdmin buida al usar pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Adreça IP incorrecta: %s"
@@ -5922,7 +5927,7 @@ msgstr "No es troba l'extensió %s. Comprova la configuració de PHP."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5930,15 +5935,15 @@ msgstr ""
"El servidor no està responent (o el sòcol del servidor local MySQL no està "
"configurat correctament)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "El servidor no respon."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detalls..."
@@ -6004,7 +6009,7 @@ msgstr "Crea una taula"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nom"
@@ -6163,26 +6168,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Conversió de codificació:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "Crea versió %s de %s.%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6908,18 +6913,17 @@ msgid "Display MIME types"
msgstr "Mostra tipus MIME"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Temps de generació"
@@ -7145,15 +7149,7 @@ msgstr "No s'han trobat dades per a visualització GIS."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Resultat SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generat per"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)."
@@ -7255,7 +7251,7 @@ msgstr "Comptador de columnes incorrecte en l'entrada CSV a la línia %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Nom de taula"
@@ -7614,7 +7610,7 @@ msgstr "Creació de PDFs"
msgid "Displaying Column Comments"
msgstr "Mostrant comentaris de les columnes"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformació del navegador"
@@ -7720,10 +7716,10 @@ msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Valor"
@@ -7786,7 +7782,7 @@ msgstr "Genera una Contrasenya"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7822,8 +7818,8 @@ msgid "Edit event"
msgstr "Editar esdeveniment"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Error processant a la petició"
@@ -7873,7 +7869,7 @@ msgstr "Preservar al completar"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7927,7 +7923,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "tipus de rutina invàlid: \"%s\""
@@ -7998,57 +7994,57 @@ msgstr "Tipus de seguretat"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Resultats de l'execució de la rutina %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Paràmetres de rutina"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funció"
@@ -8223,7 +8219,7 @@ msgstr "Taula de continguts"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributs"
@@ -8322,12 +8318,12 @@ msgid "Toggle scratchboard"
msgstr "Canvia l' scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Idioma desconegut: %1$s."
@@ -8373,7 +8369,7 @@ msgstr "Executar consulta/es SQL al servidor %s"
msgid "Run SQL query/queries on database %s"
msgstr "Executa consulta/s SQL a la Base de Dades %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Neteja"
@@ -8382,11 +8378,11 @@ msgstr "Neteja"
msgid "Columns"
msgstr "Columnes"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Desa aquesta consulta SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
@@ -8487,13 +8483,13 @@ msgstr ""
"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
"%sdocumentació%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "S'ha activat el seguiment de %s.%s."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8505,7 +8501,7 @@ msgstr ""
"(\"\\\") o la cometa simple (\"'\") abans d'aquests valors, escriu davant "
"barres invertides (per exemple '\\\\xyz' o 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8513,19 +8509,19 @@ msgstr ""
"Per a valors per defecte, només entra un valor, sense barres invertides ni "
"cometes, fent servir aquest format: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Índex"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Treu columna(es)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8534,11 +8530,11 @@ msgstr ""
"Per veure una llista d'opcions de transformació disponibles i els seus tipus "
"MIME de transformació, prem a %sdescripcions de transformació%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opcions de transformació"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8550,72 +8546,72 @@ msgstr ""
"apòstrof (\"'\") entre aquests valors, posa una barra invertida devant (per "
"exemple '\\\\xyz' o 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Dades ENUM o SET massa llargues?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Obté més espai d'edició"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Cap"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Com definit:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Principal"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Text sencer"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Darrere de %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Afegeix %s columna(es)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Has d'afegir al menys una columna."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Motor d'emmagatzematge"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definició de PARTICIÓ"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operador"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Cerca de taules"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Edita/Insereix"
@@ -8783,11 +8779,11 @@ msgstr ""
"les permanentment es necessita activar %sinterficie de taules enllaçades de "
"phpMyAdmin%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "No es pot desar la configuració"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8799,8 +8795,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "No s'han trobat arxius dins de l'arxiu ZIP!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Error en arxiu ZIP:"
@@ -8980,16 +8976,22 @@ msgstr ""
msgid "No databases"
msgstr "No hi ha bases de dades"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "filtrar taules pel nom"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "filtrar taules pel nom"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Crea una taula"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Tria una base de dades"
@@ -10136,7 +10138,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Consultes des de l'inici: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Sentències"
@@ -11364,12 +11366,12 @@ msgstr "Ignora errors"
msgid "Show form"
msgstr "Mostra el formulari"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr "No hi ha un intèrpret URL o CURL. No es pot comprovar la versió."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11377,15 +11379,15 @@ msgstr ""
"Ha fallat la lectura de la versió. Potser no estàs connectat o bé el "
"servidor d'actualitzacions no respon."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "S'ha obtingut un text de versió incorrecte des del servidor"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "No es pot interpretar el text de versió"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11394,11 +11396,11 @@ msgstr ""
"Estàs utilitzant una versió del repositori Git, executa [kbd]git pull[/"
"kbd] :-)[br]La darrera versió estable és la %s, alliberada en %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "No hi ha disponible una versió estable més nova"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11412,7 +11414,7 @@ msgstr ""
"efectiva si la teva IP pertany a un proveïdor ISP amb gran quantitat "
"d'usuaris connectats, inclós tu mateix."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11422,7 +11424,7 @@ msgstr ""
"per galetes, així que una clau es generarà automàticament per tú. S'utilitza "
"per xifrar galetes; no necesites recordar-la."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11431,7 +11433,7 @@ msgstr ""
"%sBzip2 compression and decompression%s necessita les funcions (%s) que no "
"estàn disponibles en aquest sistema."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11440,13 +11442,13 @@ msgstr ""
"directori no és accesible per tothom, ni es pot llegir ni escriure per "
"altres usuaris al teu servidor."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Aquesta %soption%s s'hauria d'activar si el teu servidor web ho suporta."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11455,7 +11457,7 @@ msgstr ""
"%sGZip compression and decompression%s necessita les funcions (%s) que no "
"estan disponibles en aquest sistema."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11466,7 +11468,7 @@ msgstr ""
"aleatòriament invalidació de sessions si %ssession.gc_maxlifetime%s és menor "
"que el seu valor (actualment %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11476,7 +11478,7 @@ msgstr ""
"minuts) . Valors més grans de 1800 poden ser un risc de seguretat, com a "
"suplantacions."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11486,7 +11488,7 @@ msgstr ""
"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11499,7 +11501,7 @@ msgstr ""
"en adreces IP pot no ser suficient si la teva IP pertany a un proveïdor ISP "
"amb gran nombre d'usuaris connectats, inclós tu mateix."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11514,7 +11516,7 @@ msgstr ""
"phpMyAdmin pot accedir al teu panel directament. Estableix el "
"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11523,7 +11525,7 @@ msgstr ""
"%sZip compression%s necessita les funcions (%s) que no estàn disponibles en "
"aquest sistema."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11532,25 +11534,25 @@ msgstr ""
"%sZip decompression%s necessita les funcions (%s) que no estan disponibles "
"en aquest sistema."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"Hauries de fer servir connexions SSL si el teu servidor de base de dades ho "
"permet."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Hauries d'utilitzar mysqli per raons de rendiment."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Estàs permetent connexions al servidor sense contrasenya."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "La clau és massa curta, ha de tenir al menys 8 caràcters."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials."
@@ -11558,8 +11560,8 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials."
msgid "Wrong data"
msgstr "Dades incorrectes"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Navega valors externs"
@@ -11591,21 +11593,29 @@ msgstr "Mostrant consulta SQL"
msgid "Validated SQL"
msgstr "SQL validat"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Resultat SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generat per"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemes amb els indexs de la taula `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etiqueta"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "S'ha modificat la taula %1$s correctament"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11726,7 +11736,7 @@ msgstr "Valors Y"
msgid "Table %s already exists!"
msgstr "La taula %s ja existeix!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "S'ha creat la taula %1$s."
@@ -11927,43 +11937,43 @@ msgstr "Elimina particionament"
msgid "Check referential integrity:"
msgstr "Comprova la integritat referencial:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Mostrant taules"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Utilització d'espai"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Ús"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efectiu"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Estadística de files"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "estàtic"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinàmic"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Tamany de fila"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Mida de fila"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12262,29 +12272,29 @@ msgstr "Segueix aquestes declaracions de manipulació de dades:"
msgid "Create version"
msgstr "Crea versió"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Fer una \"consulta segons exemple\" (comodí: \"%\") per a dos columnes "
"diferents"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Criteri de cerca addicionals"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Màxim nombre de files a dibuixar"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Cóm utilitzar"
diff --git a/po/ckb.po b/po/ckb.po
index 29b8a5d4a5..329ca2fc8f 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-15 13:06+0200\n"
-"Last-Translator: Aso Naderi \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-16 23:18+0200\n"
+"Last-Translator: Frman Husein \n"
"Language-Team: none\n"
"Language: ckb\n"
"MIME-Version: 1.0\n"
@@ -24,11 +24,11 @@ msgid "Show all"
msgstr "پیشاندانی هەموو"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "ژمارەی پەڕە:"
@@ -40,30 +40,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "گەڕان"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "گەڕان"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "بڕۆ"
@@ -113,10 +113,10 @@ msgid "Database comment: "
msgstr ":تێبینی بنکەی دراوە"
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
-msgstr "تێبینی خشتە"
+msgstr "تێبینیەکانی خشتە"
#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461
#: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357
@@ -125,14 +125,14 @@ msgstr "تێبینی خشتە"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
-msgstr "خانە"
+msgstr "ستون"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "خانە"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "جۆر"
@@ -157,9 +157,9 @@ msgstr "جۆر"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "بەتاڵ"
@@ -169,7 +169,7 @@ msgstr "بەتاڵ"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "بنەڕەت"
@@ -178,18 +178,18 @@ msgstr "بنەڕەت"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "بەستەر دەکات بۆ"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "بۆچوون"
@@ -200,11 +200,11 @@ msgstr "بۆچوون"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "نەخێر"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,10 +235,10 @@ msgstr "بەڵێ"
#: db_export.php:26
msgid "View dump (schema) of database"
-msgstr ""
+msgstr "نیشاندانى بۆشایى (هێڵکارى) لە بنکەى دراوە"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr ".هیج خشتەیەک بوونی نیە لە نێو بنکەی دراوە"
@@ -266,52 +266,52 @@ msgstr "بنکەی دراوەی %1$s ڕوونووس کرا بۆ بنکەی در
#: db_operations.php:443
msgid "Rename database to"
-msgstr ""
+msgstr "ناوی بنکەی دراوە بگۆڕە بۆ"
#: db_operations.php:470
msgid "Remove database"
-msgstr ""
+msgstr "سڕینەوەی بنکەی دراوە"
#: db_operations.php:482
#, php-format
msgid "Database %s has been dropped."
-msgstr ""
+msgstr "بنکەی دراوەی %s سڕایەوە."
#: db_operations.php:487
msgid "Drop the database (DROP)"
-msgstr ""
+msgstr "سڕینەوەی بنکەی دراوە (DROP)"
#: db_operations.php:516
msgid "Copy database to"
-msgstr ""
+msgstr "لە ڕوونووسینەوەی بنکەی دراوە بۆ"
#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482
msgid "Structure only"
-msgstr ""
+msgstr "تەنیا بنچینە"
#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484
msgid "Structure and data"
-msgstr ""
+msgstr "بنچینە و زانیاری"
#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483
msgid "Data only"
-msgstr ""
+msgstr "تەنیا زانیاری"
#: db_operations.php:533
msgid "CREATE DATABASE before copying"
-msgstr ""
+msgstr "بنکەی دراوە درووست بکە پێش ڕوونووسکردن"
#: db_operations.php:536 libraries/config/messages.inc.php:130
#: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133
#: libraries/config/messages.inc.php:139 tbl_operations.php:569
#, php-format
msgid "Add %s"
-msgstr ""
+msgstr "زۆرکردن %s"
#: db_operations.php:540 libraries/config/messages.inc.php:123
#: tbl_operations.php:321 tbl_operations.php:571
msgid "Add AUTO_INCREMENT value"
-msgstr ""
+msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە"
#: db_operations.php:544 tbl_operations.php:578
msgid "Add constraints"
@@ -319,12 +319,12 @@ msgstr ""
#: db_operations.php:559
msgid "Switch to copied database"
-msgstr ""
+msgstr "بڕۆ بۆ بنکەی دراوەی ڕوونووس کراو"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -342,8 +342,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr ""
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -351,56 +351,55 @@ msgstr ""
#: server_privileges.php:2071 server_privileges.php:2340
#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711
msgid "Table"
-msgstr ""
+msgstr "خشتە"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
-msgstr ""
+msgstr "خانە"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
-msgstr ""
+msgstr "قەبارە"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
-msgstr ""
+msgstr "بەکار دەبرێت"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
-msgstr ""
+msgstr "درووستکردن"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
-msgstr ""
+msgstr "دواترین نوێکردنەوە"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
-msgstr ""
+msgstr "دواترین پشکنین"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%s خشتە"
+msgstr[1] "%s خشتەکان"
#: db_qbe.php:41
msgid "You have to choose at least one column to display"
-msgstr ""
+msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشاندان"
#: db_qbe.php:189
#, php-format
@@ -410,7 +409,7 @@ msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
#: libraries/display_tbl.lib.php:1196
msgid "Sort"
-msgstr ""
+msgstr "ڕیزکردن"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
@@ -418,7 +417,7 @@ msgstr ""
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
-msgstr ""
+msgstr "لە سەرەتاوە بۆ کۆتایی"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
@@ -426,16 +425,16 @@ msgstr ""
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
-msgstr ""
+msgstr "لە کۆتایی بۆ سەرەتا"
#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
#: tbl_change.php:286 tbl_tracking.php:716
msgid "Show"
-msgstr ""
+msgstr "پیشاندان"
#: db_qbe.php:326
msgid "Criteria"
-msgstr ""
+msgstr "مەرج"
#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585
msgid "Ins"
@@ -443,65 +442,65 @@ msgstr ""
#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582
msgid "And"
-msgstr ""
+msgstr "و"
#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587
msgid "Del"
-msgstr ""
+msgstr "سڕینەوە"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
#: tbl_select.php:197
msgid "Or"
-msgstr ""
+msgstr "یان"
#: db_qbe.php:534
msgid "Modify"
-msgstr ""
+msgstr "دەستکاری"
#: db_qbe.php:609
msgid "Add/Delete criteria rows"
-msgstr ""
+msgstr "زۆرکردن/سڕینەوەی خانەی مەرج"
#: db_qbe.php:621
msgid "Add/Delete columns"
-msgstr ""
+msgstr "زۆرکردن/سڕینەوەی خانە"
#: db_qbe.php:634 db_qbe.php:657
msgid "Update Query"
-msgstr ""
+msgstr "نوێکردنەوەی پرس"
#: db_qbe.php:640
msgid "Use Tables"
-msgstr ""
+msgstr "خشتە بەکار ببە"
#: db_qbe.php:663
#, php-format
msgid "SQL query on database %s :"
-msgstr ""
+msgstr "پرسی SQL لەسەر بنکەی دراوەی %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
-msgstr ""
+msgstr "ناردنی پرس"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
-msgstr ""
+msgstr "ڕێگەنەدرا بە بینین"
#: db_search.php:43 db_search.php:301
msgid "at least one of the words"
-msgstr ""
+msgstr "لانیکەم یەکێک لە وشەکان"
#: db_search.php:44 db_search.php:302
msgid "all words"
-msgstr ""
+msgstr "هەموو وشەکان"
#: db_search.php:45 db_search.php:303
msgid "the exact phrase"
-msgstr ""
+msgstr "دەقاودەقی ڕستە"
#: db_search.php:46 db_search.php:304
msgid "as regular expression"
@@ -520,8 +519,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -540,7 +539,7 @@ msgstr ""
#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
-msgstr ""
+msgstr "سڕینەوە"
#: db_search.php:266
#, php-format
@@ -551,7 +550,7 @@ msgstr[1] ""
#: db_search.php:289
msgid "Search in database"
-msgstr ""
+msgstr "گەڕان لە بنکەی دراو"
#: db_search.php:292
msgid "Words or values to search for (wildcard: \"%\"):"
@@ -559,7 +558,7 @@ msgstr ""
#: db_search.php:297
msgid "Find:"
-msgstr ""
+msgstr "دۆزنەوە:"
#: db_search.php:301 db_search.php:302
msgid "Words are separated by a space character (\" \")."
@@ -575,7 +574,7 @@ msgstr ""
#: db_structure.php:84
msgid "No tables found in database"
-msgstr ""
+msgstr "هیچ خشتەیەک نەدۆزرایەوە لە بنکەی دراو"
#: db_structure.php:242 libraries/mysql_charsets.lib.php:411
#: libraries/mysql_charsets.lib.php:418
@@ -597,11 +596,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -613,9 +612,9 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
-msgstr ""
+msgstr "نیشاندان"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
@@ -644,13 +643,13 @@ msgstr ""
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
-msgstr ""
+msgstr "پشکنینی هەموو"
#: db_structure.php:686 libraries/display_tbl.lib.php:2992
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
-msgstr ""
+msgstr "نەپشکنینی هەموو"
#: db_structure.php:691
msgid "Check tables having overhead"
@@ -658,7 +657,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -667,17 +666,18 @@ msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -720,15 +720,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -746,7 +745,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -931,13 +930,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -960,7 +959,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -982,8 +981,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1092,9 +1091,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
@@ -1118,7 +1117,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
@@ -1129,12 +1128,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ""
@@ -1213,13 +1212,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr ""
@@ -1277,27 +1276,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr ""
@@ -1337,9 +1336,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr ""
@@ -1510,7 +1509,7 @@ msgstr ""
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1813,7 +1812,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1827,7 +1826,7 @@ msgstr ""
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr ""
@@ -1991,7 +1990,7 @@ msgstr ""
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2076,63 +2075,63 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr ""
@@ -2170,32 +2169,32 @@ msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr ""
@@ -2334,11 +2333,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2346,47 +2345,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2400,7 +2399,7 @@ msgstr ""
msgid "Indexes"
msgstr ""
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2436,46 +2435,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr ""
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2554,27 +2553,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2617,50 +2616,50 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr ""
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2668,16 +2667,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2729,7 +2728,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2770,12 +2769,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2786,7 +2785,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
@@ -2803,7 +2802,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2816,7 +2815,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2913,71 +2912,71 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr ""
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr ""
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3043,20 +3042,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3100,18 +3099,18 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3214,8 +3213,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr ""
@@ -3225,144 +3224,144 @@ msgstr ""
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr ""
@@ -3446,68 +3445,68 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3526,7 +3525,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3803,7 +3802,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr ""
@@ -3902,7 +3901,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4024,8 +4023,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
@@ -4432,108 +4431,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4541,434 +4544,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -4977,350 +4980,350 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5328,28 +5331,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5359,76 +5362,76 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5436,59 +5439,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5509,82 +5512,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5604,21 +5607,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5680,7 +5683,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -5832,25 +5835,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr ""
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr ""
@@ -6510,18 +6513,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6719,15 +6721,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6819,7 +6813,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7170,7 +7164,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7267,10 +7261,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7329,7 +7323,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7365,8 +7359,8 @@ msgid "Edit event"
msgstr ""
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7416,7 +7410,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7470,7 +7464,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7541,57 +7535,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -7766,7 +7760,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -7863,12 +7857,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -7914,7 +7908,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -7923,11 +7917,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8013,12 +8007,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8026,34 +8020,34 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr ""
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8061,71 +8055,71 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr ""
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr ""
@@ -8247,11 +8241,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8261,8 +8255,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8412,16 +8406,20 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+msgid "Filter databases by name"
+msgstr ""
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr ""
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -9519,7 +9517,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -10600,37 +10598,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10639,39 +10637,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -10679,21 +10677,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -10702,7 +10700,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -10712,37 +10710,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -10750,8 +10748,8 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -10781,21 +10779,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr ""
@@ -10911,7 +10917,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11110,43 +11116,43 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr ""
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11429,27 +11435,27 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index cbb4ade9d4..960ea393a8 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,8 +5,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-15 13:39+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:35+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: czech \n"
"Language: cs\n"
@@ -22,11 +22,11 @@ msgid "Show all"
msgstr "Zobrazit vše"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Strana číslo:"
@@ -41,30 +41,30 @@ msgstr ""
"bezpečnostních nastavení."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Vyhledávání"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -74,7 +74,7 @@ msgstr "Vyhledávání"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Proveď"
@@ -114,8 +114,8 @@ msgid "Database comment: "
msgstr "Komentář k databázi: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentář k tabulce"
@@ -126,14 +126,14 @@ msgstr "Komentář k tabulce"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Pole"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -141,12 +141,12 @@ msgstr "Pole"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -158,9 +158,9 @@ msgstr "Typ"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulový"
@@ -170,7 +170,7 @@ msgstr "Nulový"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Výchozí"
@@ -179,18 +179,18 @@ msgstr "Výchozí"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Odkazuje na"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentáře"
@@ -201,11 +201,11 @@ msgstr "Komentáře"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -223,12 +223,12 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -238,8 +238,8 @@ msgstr "Ano"
msgid "View dump (schema) of database"
msgstr "Zobrazit výpis (schéma) databáze"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "V databázi nebyla nalezena žádná tabulka."
@@ -324,8 +324,8 @@ msgstr "Přepnout na zkopírovanou databázi"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Upravit nebo exportovat relační schéma"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "Upravit nebo exportovat relační schéma"
msgid "Table"
msgstr "Tabulka"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Řádků"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Velikost"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "právě se používá"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Vytvořeno"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Poslední změna"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Poslední kontrola"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -484,13 +483,13 @@ msgstr "Použít tabulky"
msgid "SQL query on database %s :"
msgstr "SQL dotaz na databázi %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Provést dotaz"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Přístup odepřen"
@@ -525,8 +524,8 @@ msgstr[1] "V tabulce %2$s jsou %1$s odpovídající záznamy"
msgstr[2] "V tabulce %2$s je %1$s odpovídajících záznamů"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Projít"
@@ -603,11 +602,11 @@ msgstr "Pohled %s byl odstraněn"
msgid "Table %s has been dropped"
msgstr "Tabulka %s byla odstraněna"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Sledování je zapnuté."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Sledování není zapnuté."
@@ -620,7 +619,7 @@ msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Pohled"
@@ -665,7 +664,7 @@ msgstr "Zaškrtnout neoptimální"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -674,17 +673,18 @@ msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Náhled pro tisk"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Vyprázdnit"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -727,15 +727,14 @@ msgid "Tracked tables"
msgstr "Sledované tabulky"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Databáze"
@@ -753,7 +752,7 @@ msgstr "Aktualizováno"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Stav"
@@ -942,13 +941,13 @@ msgstr "Zobrazuji oblíbený dotaz"
msgid "The bookmark has been deleted."
msgstr "Položka byla smazána z oblíbených."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Soubor nelze přečíst"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -977,7 +976,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Vytvořen oblíbený dotaz %s"
@@ -1004,8 +1003,8 @@ msgstr ""
"znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte "
"časové limity v PHP."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1114,9 +1113,9 @@ msgid "Close"
msgstr "Ukončit"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Upravit"
@@ -1140,7 +1139,7 @@ msgstr "Statická data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Celkem"
@@ -1151,12 +1150,12 @@ msgid "Other"
msgstr "Ostatní"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1238,13 +1237,13 @@ msgid "System swap"
msgstr "Odkládací oblast"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1302,27 +1301,27 @@ msgid "Connections"
msgstr "Připojení"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1362,9 +1361,9 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Žádná"
@@ -1550,7 +1549,7 @@ msgstr "Vysvětlení dotazu"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Čas"
@@ -1859,7 +1858,7 @@ msgstr "%d není platné číslo řádku."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1873,7 +1872,7 @@ msgstr "Skrýt parametry vyhledávání"
msgid "Show search criteria"
msgstr "Zobrazit parametry vyhledávání"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Zoomovací vyhledávání"
@@ -2043,7 +2042,7 @@ msgstr "Změnit heslo"
msgid "More"
msgstr "Více"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2130,63 +2129,63 @@ msgid "December"
msgstr "prosinec"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "led"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "úno"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "bře"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "dub"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "kvě"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "čen"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "čec"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "srp"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "zář"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "říj"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "lis"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "pro"
@@ -2224,32 +2223,32 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Úte"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Stř"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Čtv"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pát"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sob"
@@ -2393,11 +2392,11 @@ msgstr ""
"Chybná přístupová práva konfiguračního souboru, neměl by být zapisovatelný "
"pro všechny!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Velikost písma"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Příliš mnoho chyb, některé nebudou zobrazeny."
@@ -2405,12 +2404,12 @@ msgstr "Příliš mnoho chyb, některé nebudou zobrazeny."
msgid "File was not an uploaded file."
msgstr "Soubor nebyl nahrán."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2418,27 +2417,27 @@ msgstr ""
"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla "
"zadána v HTML formuláři."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Soubor byl nahrán jen částečně."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Chybějící adresář pro dočasné soubory."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Chyba při zapisování souboru na disk."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Nahrávání souboru zastaveno rozšířením."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Neznámá chyba při nahrávání souboru."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2446,11 +2445,11 @@ msgstr ""
"Chyba při přejmenování nahraného soubory, viz [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Chyba při přesouvání nahraného souboru."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Nahraný soubor nelze přečíst (přesunout)."
@@ -2464,7 +2463,7 @@ msgstr "Není definován žádný klíč!"
msgid "Indexes"
msgstr "Klíče"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2502,46 +2501,46 @@ msgstr ""
"Klíče %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být "
"odstraněn."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Databáze"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Vložit"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Úpravy"
@@ -2620,13 +2619,13 @@ msgstr "Rozšíření"
msgid "Engines"
msgstr "Úložiště"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Chyba"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2634,7 +2633,7 @@ msgstr[0] "Ovlivněn %1$d řádek."
msgstr[1] "Ovlivněny %1$d řádky."
msgstr[2] "Ovlivněno %1$d řádek."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2642,7 +2641,7 @@ msgstr[0] "Smazán %1$d řádek."
msgstr[1] "Smazány %1$d řádky."
msgstr[2] "Smazáno %1$d řádek."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2686,43 +2685,43 @@ msgstr "Úložiště %s je na tomto MySQL serveru vypnuté."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Tento MySQL server nepodporuje úložiště %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "neznámý stav tabulky: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "Zdrojová databáze „%s“ nebyla nalezena!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "Cílová databáze „%s“ nebyla nalezena!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Chybná databáze"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Chybné jméno tabulky"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Chyba při přejmenování tabulky %1$s na %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabulka %1$s byla přejmenována na %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Nepodařilo se uložit nastavení prohlížení tabulky"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2731,7 +2730,7 @@ msgstr ""
"Selhalo vyčištění tabulky s nastavením procházení (viz $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2741,16 +2740,16 @@ msgstr ""
"Nepodařilo se uložit nastavení „%s“. Změny se neprojeví po novém načtení "
"stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Náhled není k dispozici."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "zvolit"
@@ -2811,17 +2810,22 @@ msgstr ""
"Osmibajtové číslo, se znaménkem v rozsahu -9223372036854775808 až "
"9223372036854775807, bez znaménka 0 až 18446744073709551615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
+"Číslo s pevnou desetinnou čárkou (M, D) - maximální počet číslic (M) je 65 "
+"(výchozí 10), maximální počet desetinných míst (D) je 30 (výchozí 0)"
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
+"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od "
+"-3.402823466E+38 od -1.175494351E-38, 0, a od 1.175494351E-38 do "
+"3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
@@ -2829,6 +2833,9 @@ msgid ""
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
+"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od "
+"-1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od "
+"2.2250738585072014E-308 do 1.7976931348623157E+308"
#: libraries/Types.class.php:305
msgid ""
@@ -2841,6 +2848,7 @@ msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
+"Bitové pole (M), ukládající M bitů v záznam (výchozí je 1, maximum je 64)"
#: libraries/Types.class.php:309
msgid ""
@@ -2854,12 +2862,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Zkratka pro BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Datum, podporovaný rozsah od %1$s do %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Datum a čas, podporovaný rozsah od %1$s do %2$s"
@@ -2869,8 +2877,10 @@ msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
+"Časová značka v rozsahu od 1970-01-01 00:00:01 UTC do 2038-01-09 03:14:07 "
+"UTC, ukládaná jako počet sekund od počátku epochy (1970-01-01 00:00:00 UTC)"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Čas, podporovaný rozsah od %1$s do %2$s"
@@ -2887,7 +2897,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2900,7 +2910,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2997,75 +3007,71 @@ msgstr "Množina mnohoúhelníků"
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
-#| msgid "Numeric"
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "Čísla"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Date and time"
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Datum a čas"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "String"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "Řetězce"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Prostorové"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "True nebo false"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Zkratka pro BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3137,13 +3143,13 @@ msgstr "Server"
msgid "Cookies must be enabled past this point."
msgstr "Přihlášení vyžaduje povolené cookies."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Přihlášení bez hesla je zakázáno v konfiguraci (viz AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3151,8 +3157,8 @@ msgstr ""
"Nebyla zaznamenána žádná aktivita po dobu %s sekund, prosím přihlaste se "
"znovu"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Nepodařilo se přihlášení k MySQL serveru"
@@ -3196,18 +3202,18 @@ msgstr "Tabulky"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Navíc"
@@ -3314,8 +3320,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-dotaz"
@@ -3325,144 +3331,144 @@ msgstr "SQL-dotaz"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL hlásí: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Nepodařilo se připojit k serveru kontrolujícímu SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Vysvětlit SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Bez vysvětlení SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Bez PHP kódu"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Vytvořit PHP kód"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Obnovit"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Bez kontroly SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Zkontrolovat SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Upravit tento dotaz na této stránce"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Upravit zde"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilování"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%a %d. %b %Y, %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dnů, %s hodin, %s minut a %s sekund"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Chybějící parametr:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "První"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Předchozí"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Následující"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Poslední"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Přejít na databázi „%s“."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkčnost %s je omezena známou chybou, viz %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Klikněte pro přepnutí"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Procházet váš počítač:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Zvolte soubor z adresáře pro upload na serveru %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Adresář určený pro upload souborů nemohl být otevřen"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Nebyl zvolen žádný soubor pro nahrání"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Spustit"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Vytisknout"
@@ -3546,68 +3552,68 @@ msgstr "oba výše uvedené"
msgid "neither of the above"
msgstr "ani jeden z výše uvedených"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Nebylo zadáno kladné číslo"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Nebylo zadáno nezáporné číslo"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Neplatné číslo portu"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Nesprávná hodnota"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Hodnota musí být menší nebo rovna %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Chybí data v %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "nedostupné"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "„%s“ vyžaduje rozšíření %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "import nebude fungovat, chybí funkce (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "export nebude fungovat, chybí funkce (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Kontrolování SQL je vypnuté"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Rozšíření SOAP nebylo nalezeno"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maximálně %s"
@@ -3626,7 +3632,7 @@ msgid "Set value: %s"
msgstr "Nastavena hodnota: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Obnovit výchozí hodnotu"
@@ -3925,7 +3931,7 @@ msgid "Character set of the file"
msgstr "Znaková sada souboru"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formát"
@@ -4024,7 +4030,7 @@ msgstr "Návěstí"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME typ"
@@ -4149,8 +4155,8 @@ msgstr "Přizpůsobí výchozí nastavení"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4581,14 +4587,19 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minimální počet tabulek pro zobrazení filtru tabulek"
#: libraries/config/messages.inc.php:281
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Minimální počet tabulek pro zobrazení filtru databází"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Řetězec, který rozděluje databáze do různých pater stromu"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Oddělovač databázového stromu"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4596,39 +4607,39 @@ msgstr ""
"Pouze pro odlehčenou verzi; zobrazí databáze jako strom (určeno oddělovačem "
"nastaveným níže)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Stromový pohled na databáze"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Tuto volbu zakažte, pokud chcete vidět všechny databáze najednou"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Použít odlehčenou verzi"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Nejvyšší počet pater tabulkového stromu"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Řetězec, který rozděluje tabulky do různých pater stromu"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Oddělovač tabulkovýho stromu"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL na které bude odkazovat logo v navigačním rámu"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL odkazu loga"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4636,37 +4647,37 @@ msgstr ""
"Zda se má odkazovaná stránka otevřít v hlavním okně ([kbd]hlavní[/kbd]) nebo "
"v novém ([kbd]nové[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Cíl odkazu loga"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Zvýrazní server pod kurzorem myši"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Povolit zvýrazňování"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Nejvyšší počet tabulek v seznamu nedávných tabulek; nastavte 0 pro vypnutí"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Nedávno použité tabulky"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "Nejvyšší počet znaků zobrazeních v nečíselných polích při procházení"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Omezení počtu znaků"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4677,11 +4688,11 @@ msgstr ""
"Zakázání může způsobit, že se zapomenete odhlásit od ostatních serverů, "
"pokud jich používáte více."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Smazat všechny cookies při odhlášení"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4689,11 +4700,11 @@ msgstr ""
"Určuje, zda se má pamatovat předchozí přihlášení, při použití přihlašování "
"pomocí cookies"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Pamatovat si uživatelské jméno"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4705,49 +4716,49 @@ msgstr ""
"sezení, čili, že bude smazána v okamžiku, kdy zavřete okno prohlížeče. Tato "
"volba je doporučena pro nedůvěryhodná prostředí."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Uložení přihlašovací cookie"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Určuje, jak dlouho (v sekundách) je přihlašovací cookie platná"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Platnost přihlašovací cookie"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Zdvojnásobit velikost editačního pole pro sloupec typu LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Větší editační pole pro LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Nejvyšší počet znaků SQL dotazu, které se ještě zobrazí"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Nejvyšší délka zobrazeného SQL dotazu"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Uživatelé nemohou nastavit větší hodnotu"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Nejvyšší počet databází zobrazovaných v levém rámu a v seznamu databází"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Nejvyšší počet databází"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4756,19 +4767,19 @@ 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ší“."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Nejvyšší počet zobrazených řádků"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Nejvyšší počet zobrazených tabulek"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4776,11 +4787,11 @@ msgstr ""
"Vypne varování o chybějícím rozšíření mcrypt při použití přihlašování přes "
"cookies"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "Varování o mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4788,43 +4799,43 @@ msgstr ""
"Počet bytů, které si může skript alokovat, např. [kbd]32M[/kbd] ([kbd]0[/"
"kbd] ruší omezení)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Omezení paměti"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Jedná se o odkazy Upravit, Kopírovat a Odstranit"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Kde zobrazit odkazy s akcemi při procházení"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Použít přirozené řazení pro jména tabulek a databází"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Přirozené pořadí"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Zda se mají zobrazit pouze ikony, nebo pouze text, případně obojí"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Ikony v navigační liště"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "Použít vyrovnávací paměť výstupu GZip pro zrychlení přenosů HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Mezipaměť pro GZip výstup"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4832,19 +4843,19 @@ msgstr ""
"[kbd]SMART[/kbd] - t.j. řazení sestupně pro pole typu TIME, DATE, DATETIME a "
"TIMESTAMP, v ostatních případech se použije vzestupné řazení"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Výchozí pořadí řazení"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Používat trvalé připojení k databázím MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Trvalé připojení"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4853,23 +4864,23 @@ msgstr ""
"Vypne varování o nekompletních relacích na stránce s detaily databáze pokud "
"chybí jakákoliv tabulka z úložiště nastavení phpMyAdmina"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Zobrazení ikon pro operace s tabulkami"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Zakáže úpravu polí BLOB a BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Chránit binární pole"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4879,111 +4890,111 @@ msgstr ""
"nastavení phpMyAdmina). Pokud toto zakážete, využijí se k zobrazení historie "
"Java Scriptové rutiny (se zavřením okna ztratíte předchozí historii)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Nepřetržitá historie dotazů"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Kolik dotazů se má držet v historii"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Délka historie dotazů"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Panel zobrazený při otevření nového okna dotazů"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Výchozí panel okna dotazů"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Výška okna dotazů (v pixelech)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Výška okna dotazů"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Šířka okna dotazů (v pixelech)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Šířka okna dotazů"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Vybere, které funkce budou použity pro konverzi znakových sad"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Nástroje pro konverzi znakových sad"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Při procházení tabulek se pro každou uloží nastavené řazení"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Pamatovat si řazení u tabulkek"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "Zopakovat záhlaví každých X buněk, [kbd]0[/kbd] vypne tuto funknci"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Opakovat záhlaví"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Uložit všechny upravené buňky najednou"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Adresář na serveru pro ukládání exportů"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Adresář pro ukládání"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Pokud tuto volbu nepoužíváte, nechte ji prázdnou"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Pořadí ověřování hostitelů"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Nechte volbu prázdnou pro výchozí nastavení"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Pravidla ověřování hostitelů"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Povolit přihlášení bez hesla"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Povolit přihlašování uživatele root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "Název pro zobrazení při HTTP přihlašování"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP doméma"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -4993,19 +5004,19 @@ msgstr ""
"přihlašování SweKey[/a] (Není umístěna ve Vašem kořenovém adresáři "
"dokumentů; Doporučení: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Konfigurační soubor SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Která přihlašovací metoda se má použít"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Typ přihlašování"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5013,11 +5024,11 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]záložek[/a], doporučené nastavení: [kbd]pma_bookmarks[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabulka záložek"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5025,32 +5036,32 @@ msgstr ""
"Nechte prázdné pro žádné komentáře či mime typy polí, výchozí nastavení: "
"[kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabulka informací o polích"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Zda se má komprimovat připojení k MySQL serveru"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Komprimovat připojení"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Způsob připojení k serveru, pokud si nejste jistí ponechte [kbd]tcp[/kbd]"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Typ připojení"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Heslo kontrolního uživatele"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5058,29 +5069,29 @@ msgstr ""
"Zvláštní MySQL uživatel s omezenými právy, více informací na [a@http://wiki."
"phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Kontrolní uživatel"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr "Jiný server na kterém bude umístěno úložiště nastavení phpMyAdmina"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Kontrolní host"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Zda počítat tabulky, když se zobrazuje seznam databází"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Počítat tabulky"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5088,11 +5099,11 @@ msgstr ""
"Nechte prázné pro vypnutí návrháře, výchozí nastavení: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabulka návrháře"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5100,27 +5111,27 @@ msgstr ""
"Více informací v [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"trackeru[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Zakázat použití INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "Které rozšíření PHP se má použít, použijte mysqli, pokud je to možné"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Použít rozšíření PHP"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Skrýt databáze odpovídající regulárnímu výrazu (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Skrýt databáze"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5128,23 +5139,23 @@ msgstr ""
"Nechte prázné pro vypnutí SQL historie, výchozí hodnota [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabulka pro historii SQL dotazů"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Jméno počítače, kde běží MySQL server"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Jméno serveru"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL pro odhlášení"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5152,19 +5163,19 @@ msgstr ""
"Omezí počet nastavení prohlížení tabulek, která budou uložena v databázi, "
"nejstarší záznamy jsou automaticky odstraněny"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Nejvyšší počet uložených nastavení tabulek"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Pokusit se připojit bez hesla"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Připojit bez hesla"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5177,30 +5188,30 @@ msgstr ""
"Použitím této volby můžete také změnit pořadí databází, stačí na konci "
"seznamu uvést [kbd]*[/kbd] pro zobrazení ostatních v abecedním pořadí."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Zobrazit jen vybrané databáze"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Nechte prázdné, pokud nepoužíváte přihlašování config"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Heslo pro přihlašování config"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]"
"pma_table_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF schémata: tabulka stránek"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5211,20 +5222,20 @@ msgstr ""
"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]"
"phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Jméno databáze"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Port na kterém poslouchá MySQL server, nechte prázné pro výchozí hodnotu"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Port serveru"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5232,11 +5243,11 @@ msgstr ""
"Nechte prázdné pro vypnutí „trvalého“ ukládání nedávných tabulek, výchozí "
"nastavení: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Naposledy použité tabulky"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5244,19 +5255,19 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro [a@http://wiki.phpmyadmin.net/pma/"
"relation]relace[/a], výchozí nastavení: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Tabulka s relacemi"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL příkaz pro načtení dostupných databází"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Příkaz SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5264,43 +5275,43 @@ msgstr ""
"Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"authentication types[/a]"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Jméno signon session"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL pro přihlášení"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Socket na kterém poslouchá MySQL server, nechte prázné pro výchozí hodnotu"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Socket serveru"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Zda se má použít SSL pro připojení k MySQL serveru"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Použít SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF schéma: tabulka souřadnic"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5308,11 +5319,11 @@ msgstr ""
"Tabulka obsahující popisy polí, nechte prázdnou pro vypnutí této funkce. "
"Výchozí hodnota: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Tabulka s popisem polí"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5320,11 +5331,11 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro „trvalé“ ukládání nastavení "
"procházení tabulek, výchozí nastavení: [kbd]pma_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Tabulka pro nastavení rozhraní"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5332,43 +5343,43 @@ msgstr ""
"Jestli přidat příkaz DROP DATABASE IF EXISTS jako první při vytváření "
"databáze."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Přidat DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
"Jestli přidat příkaz DROP TABLE IF EXISTS jako první při vytváření tabulky."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Přidat DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
"Jestli přidat příkaz DROP VIEW IF EXISTS jako první při vytváření pohledu."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Přidat DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Určuje seznam příkazů které se automaticky používají pro vytvoření nových "
"verzí."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Sledované příkazy"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5376,22 +5387,22 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro sledování SQL dotazů, výchozí "
"nastavení: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabulka pro sledování SQL dotazů"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Jestli má sledování tabulek automaticky vytvářet verze pro tabulky a pohledy."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Automaticky vytvářet verze"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5399,34 +5410,34 @@ msgstr ""
"Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, "
"výchozí nastavení: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabulka pro uživatelská nastavení"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Uživatel pro přihlašování config"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
"Přívětivý popis tohoto serveru. Pokud necháte prázné, zobrazí se jeho jméno."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Dlouhé jméno tohoto serveru"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Jestli bude uživateli zobrazeno tlačítko „Zobrazit vše“"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Umožní zobrazit všechny řádky"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5437,84 +5448,84 @@ msgstr ""
"neomezuje možnost spustit daný příkaz přímo, jen ovlivňuje zobrazení "
"formuláře"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Zobrazit formulář pro změnu hesla"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Zobrazit formulář pro vytvoření databáze"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Zobrazit nebo skrýt sloupec zobrazující čas vytvoření pro všechny tabulky"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Zobrazit čas vytvoření"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Zobrazit nebo skrýt sloupec zobrazující čas poslední změny pro všechny "
"tabulky"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Zobrazit čas poslední změny"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Zobrazit nebo skrýt sloupec zobrazující čas poslední kontroly pro všechny "
"tabulky"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Zobrazit čas poslední kontroly"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
"Určuje, zda se má zobrazit volba směru vypisování při procházení tabulky"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Zobrazit volbu směru vypisování"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
"Určuje, jestli mají být zobrazeny typy polí při úpravě a vkládání záznamů"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Zobrazit typy polí"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Zobrazí seznam funkcí v editačním režimu"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Zobrazit seznam fukncí"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Zda zobrazit nápovědu nebo ne"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Zobrazit nápovědu"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5522,41 +5533,41 @@ msgstr ""
"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Zobrazit odkaz na phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Zobrazí podrobné informace o MySQL serveru"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Určuje, jestli SQL dotazy vytvořené phpMyAdminem budou zobrazeny"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Zobrazit SQL dotazy"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "Určuje zda má pole pro zadání dotazu zůstat zobrazeno i po odeslání"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Zachovat pole pro dotaz"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Povolí zobrazení statistik (např. použití místa) pro databáze a tabulky"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Zobrazit statistiky"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5564,11 +5575,11 @@ msgstr ""
"Pokud jsou povoleny tooltipy a je nastaven komentář databáze, tato volba "
"prohodí komentář a skutečné jméno"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Zobrazit komentář databáze místo jména"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5579,30 +5590,30 @@ msgstr ""
"rozdělení podle nastavení $cfg['LeftFrameTableSeparator']. Takže komentář se "
"použije jen pro zanoření, ale jména tabulek zůstanou nezměněná"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Zobrazit komentář tabulky místo jména"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Zobrazit komentáře tabulky v tooltipu"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Označit používané tabulky a tím umožnit zobrazení databází se zamčenými "
"tabulkami"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Přeskočit zamčené tabulky"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Vyžaduje povolené kontrolování SQL"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5612,18 +5623,18 @@ msgstr "Vyžaduje povolené kontrolování SQL"
msgid "Password"
msgstr "Heslo"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
"[strong]Varování:[/strong] vyžaduje rozšíření PHP SOAP nebo PEAR modul SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Povolit kontrolování SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5631,21 +5642,21 @@ msgstr ""
"Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]"
"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Uživatel"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Na hlavní stránce je zobrazeno varování pokud je detekování rozšíření Suhosin"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Varování o Suhosinu"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5653,11 +5664,11 @@ msgstr ""
"Velikost editačního pole (počet sloupců), tato hodnota bude navýšena pro SQL "
"dotazy (*2) a pro dotazové okno (*1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Sloupců v textové oblasti"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5665,31 +5676,31 @@ msgstr ""
"Velikost editačního pole (počet řádek), tato hodnota bude navýšena pro SQL "
"dotazy (*2) a pro dotazové okno (*1,25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Řádků v textové oblasti"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Titulek prohlížeče pokud je vybraná databáze"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Titulek prohlížeče pokud není nic vybráno"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Výchozí titulek"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titulek prohlížeče pokud je vybraný server"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Titulek prohlížeče pokud je vybraná tabulka"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5701,27 +5712,27 @@ msgstr ""
"Forwarded-For) přicházející od proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Seznam důvěryhodných proxy pro ověření IP adresy"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Adresář na serveru, kam můžete nahrát souboru pro import"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Adresář pro nahrávání"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Povolit prohledávání přes celou databázi"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Použít prohledávání databáze"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5729,27 +5740,27 @@ msgstr ""
"Pokud je vypnuto, uživatelé nemůžou změnit žádná z níže uvedených nastavení, "
"bez ohledu na zaškrtávátko napravo"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Povolit záložku Pro vývojáře v nastaveních"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Zkontrolovat nejnovější verzi"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Povolí kontrolu poslední verze phpMyAdmina na hlavní stránce"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Kontrola verze"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5757,7 +5768,7 @@ msgstr ""
"Povolí [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] "
"kompresi pro import a export"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5778,83 +5789,83 @@ msgid "Signon authentication"
msgstr "Přihlašování signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV pomocí LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Sešit OpenDocument"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Rychlý"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Vlastní"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Nastavení exportu databází"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV pro MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Text OpenDocument"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Nepodařilo se inicializovat knihovnu Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Nepodařilo se připojit k Drizzle serveru"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Nepodařilo se připojit k MySQL serveru"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"Při použití nastavené přihlašovací metody nebylo vyplněno uživatelské jméno"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Prázdné jméno signon sezení při použití přihlašování signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Prázdné přihlašovací URL při použití přihlašování signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Prázdný kontrolní uživatel phpMyAdmina při použití pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Prázdné heslo kontrolního uživatele phpMyAdmina při použití pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Nesprávná IP adresa: %s"
@@ -5874,23 +5885,23 @@ msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP."
msgid "possible deep recursion attack"
msgstr "možný útok rekurzí"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Server neodpovídá."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
"Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Podrobnosti..."
@@ -5955,7 +5966,7 @@ msgstr "Vytvořit tabulku"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Název"
@@ -6114,25 +6125,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Převod znakové sady:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s z větve %2$s"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "žádná větev"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Revize Gitu"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "zapsal %2$s dne %1$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "vytvořil %2$s dne %1$s"
@@ -6846,18 +6857,17 @@ msgid "Display MIME types"
msgstr "Zobrazit MIME typy"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Počítač"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Vygenerováno"
@@ -7075,15 +7085,7 @@ msgstr "Nebyla nalezena žádná data zobrazení GIS."
msgid "GLOBALS overwrite attempt"
msgstr "Pokus o přepsání GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Výsledek SQL dotazu"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Vygeneroval"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)."
@@ -7182,7 +7184,7 @@ msgstr "Chybný počet polí v CSV datech na řádku %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Jméno tabulky"
@@ -7226,7 +7228,7 @@ msgstr "Soubor ESRI"
#: libraries/import/shp.php:199
#, php-format
msgid "Geometry type '%s' is not supported by MySQL."
-msgstr ""
+msgstr "Typ geometrie '%s' není v MySQL podporován."
#: libraries/import/shp.php:360
#, php-format
@@ -7536,7 +7538,7 @@ msgstr "Vytváření PDF"
msgid "Displaying Column Comments"
msgstr "Zobrazuji komentáře polí"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformace při prohlížení"
@@ -7642,10 +7644,10 @@ msgid "Variable"
msgstr "Proměnná"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Hodnota"
@@ -7708,7 +7710,7 @@ msgstr "Vytvořit heslo"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7744,8 +7746,8 @@ msgid "Edit event"
msgstr "Upravit událost"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Chyba při zpracování požadavku"
@@ -7795,7 +7797,7 @@ msgstr "Při dokončení zachovat"
msgid "Definer"
msgstr "Zadavatel"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Zadavatel musí být ve tvaru \"uživatel@počítač\""
@@ -7853,7 +7855,7 @@ msgstr ""
"„mysqli“."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Chybný typ rutiny: „%s“"
@@ -7924,17 +7926,17 @@ msgstr "Typ zabezpečení"
msgid "SQL data access"
msgstr "Přístup k SQL datům"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Musíte zadat jméno rutiny"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "„%s“ je chybný směr parametru."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -7942,19 +7944,19 @@ msgstr ""
"Musíte zadat parametr „Délka/Hodnoty“ pro parametry typu ENUM, SET, VARCHAR "
"nebo VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Pro každý parametr musíte zadat jeho jméno a typ."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Musíte zadat platný návratový typ rutiny."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Musíte zadat definici rutiny."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -7962,22 +7964,22 @@ msgstr[0] "Posledním příkazem v proceduře byla ovlivněna %d řádka"
msgstr[1] "Posledním příkazem v proceduře byly ovlivněny %d řádky"
msgstr[2] "Posledním příkazem v proceduře bylo ovlivněno %d řádek"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Výsledek spuštění rutiny %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Spustit rutinu"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Parametry rutiny"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkce"
@@ -8152,7 +8154,7 @@ msgstr "Obsah"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Vlastnosti"
@@ -8251,12 +8253,12 @@ msgid "Toggle scratchboard"
msgstr "Zobrazit grafický návrh"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznámý jazyk: %1$s."
@@ -8302,7 +8304,7 @@ msgstr "Spustit SQL dotaz(y) na serveru %s"
msgid "Run SQL query/queries on database %s"
msgstr "Spustit SQL dotaz(y) na databázi %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Vyčistit"
@@ -8311,11 +8313,11 @@ msgstr "Vyčistit"
msgid "Columns"
msgstr "Pole"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Přidat tento SQL dotaz do oblíbených"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
@@ -8414,12 +8416,12 @@ msgstr ""
"Kontrolování SQL nemohlo být spušteno. Prosím ověřte, jestli máte požadovaná "
"rozšíření PHP, jak je popsáno v %sdokumentaci%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Je zapnuté sledování %s."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8431,7 +8433,7 @@ msgstr ""
"nebo jednoduché uvozovky („'“) mezi těmito hodnotami, napište před ně zpětné "
"lomítko (příklad: '\\\\xyz' nebo 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8439,17 +8441,17 @@ msgstr ""
"Výchozí hodnotu zadejte jen jednu hodnotu bez uvozovek a escapování znaků, "
"například: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Klíč"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Přesunout pole"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8458,11 +8460,11 @@ msgstr ""
"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
"%spopisy transformací%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Parametry transformace"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8474,71 +8476,71 @@ msgstr ""
"(„'“) mezi těmito hodnotami, vložte před ně zpětné lomítko (například '\\"
"\\xyz' nebo 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Příliš mnoho dat ENUM nebo SET?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Získejte více místa pro editaci"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Žádná"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Dle zadání:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primární"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "první"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "po %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Přidat %s polí"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Musíte přidat alespoň jedno pole."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Úložiště"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definice PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operátor"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Vyhledávání v tabulce"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Upravit/Vložit"
@@ -8703,11 +8705,11 @@ msgstr ""
"Vaše nastavení bude uchováno jen pro toto sezení. Pro trvalá nastavení "
"musíte nastavit %súložiště nastavení phpMyAdmina%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Nepodařilo se uložit nastavení"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8719,8 +8721,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "V ZIP archívu nebyly nalezeny žádné soubory!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Chyba v ZIP archívu:"
@@ -8896,16 +8898,21 @@ msgstr ""
msgid "No databases"
msgstr "Žádné databáze"
-#: navigation.php:261
+#: navigation.php:209
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtrovat databáze podle jména"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtrovat tabulky podle jména"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Nová tabulka"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Prosím vyberte databázi"
@@ -10053,7 +10060,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Dotazů od spuštění: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Údaj"
@@ -11281,13 +11288,13 @@ msgstr "Ignorovat chyby"
msgid "Show form"
msgstr "Zobrazit formulář"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Není dostupný přístup na URL ani CURL, proto není možné kontrolovat verzi."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11295,15 +11302,15 @@ msgstr ""
"Čtení verze selhalo. Možná nejste připojeni k internetu nebo server s "
"informace o verzích neodpověděl."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Server odpověděl chybným textem verze"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Nepodařilo se zpracovat text verze"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11312,11 +11319,11 @@ msgstr ""
"Používáte verzi z Gitu, pro aktualizaci spusťte [kbd]git pull[/kbd] :-)[br]"
"Poslední stabilní verze je %s a byla vydána %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Není dostupná žádná novější verze"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11331,7 +11338,7 @@ msgstr ""
"poskytovateli internetových služeb, ke kterému jsou připojeny tisíce "
"uživatelů."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11341,7 +11348,7 @@ msgstr ""
"povolené přihlašování pomocí cookie, takže byl Váš tajný klíč vygenerován. "
"Klíč bude použit pro zašifrování cookies."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11350,7 +11357,7 @@ msgstr ""
"%sKomprese a dekomprese bzip2%s vyžaduje funkce (%s) které nejsou dostupné "
"na tomto systému."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11359,12 +11366,12 @@ msgstr ""
"adresář není dostupný zvenčí, ani není čitelný nebo zapisovatelný pro "
"ostatní uživatele na Vašem serveru."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Pokud to váš webserver podporuje, měli byste použít %sSSL připojení%s."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11373,7 +11380,7 @@ msgstr ""
"%sGZip komprese a dekomprese%s vyžaduje funkce (%s) které nejsou dostupné na "
"tomto systému."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11384,7 +11391,7 @@ msgstr ""
"ukončení sezení pokud je %ssession.gc_maxlifetime%s nižší než tato hodnota "
"(v současné době %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11394,7 +11401,7 @@ msgstr ""
"sekund (30 minut). Hodnoty vyšší než 1800 mohou znamenat bezpečnostní "
"riziko; hrozí například podvržení identity."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11404,7 +11411,7 @@ msgstr ""
"%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:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11417,7 +11424,7 @@ msgstr ""
"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."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11432,7 +11439,7 @@ msgstr ""
"Vašemu phpMyAdmin panelu. Nastavte %styp přihlašování%s na [kbd]cookie[/kbd] "
"nebo [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11440,7 +11447,7 @@ msgid ""
msgstr ""
"%sZip komprese%s vyžaduje funkce (%s) které nejsou dostupné na tomto systému."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11449,23 +11456,23 @@ msgstr ""
"%sZip dekomprese%s vyžaduje funkce (%s) které nejsou dostupné na tomto "
"systému."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Měli byste použít SSL připojení, pokud to váš databázový podporuje."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Měli byste použít mysqli z výkonostních důvodů."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Dovolujete připojit se k serveru bez hesla."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Tajný klíč je příliš krátký, měl by obsahovat alespoň 8 znaků."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Tajný klíč by měl obsahovat číslice, písmena [em]A[/em] zvláštní znaky."
@@ -11474,8 +11481,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Chybná data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Projít hodnoty cizích klíčů"
@@ -11505,21 +11512,29 @@ msgstr "Zobrazuji SQL dotaz"
msgid "Validated SQL"
msgstr "Proběhlo zkontrolování SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Výsledek SQL dotazu"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Vygeneroval"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s klíči v tabulce „%s\""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Název"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabulka %1$s byla úspěšně změněna"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Vybraná pole byla úspěšně přesunuta."
@@ -11637,7 +11652,7 @@ msgstr "Hodnoty Y"
msgid "Table %s already exists!"
msgstr "Tabulka %s již existuje!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Byla vytvořena tabulka %1$s."
@@ -11836,43 +11851,43 @@ msgstr "Zrušit dělení"
msgid "Check referential integrity:"
msgstr "Zkontrolovat integritu odkazů:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Zobrazuji tabulky"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Využití místa"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Používá"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektivní"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistika řádků"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statický"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamický"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Délka řádku"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Velikost řádku"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Další automatický klíč"
@@ -12159,28 +12174,28 @@ msgstr "Sledovat tyto příkazy pro úpravu dat:"
msgid "Create version"
msgstr "Vytvořit verzi"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Provést „dotaz podle příkladu“ (zástupný znak: „%“) pro dva různé sloupce"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Další parametr vyhledávání"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Použít tento sloupec pro přiřazení názvu každému bodu"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Nejvyšší počet vykreslených řádků"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Projít/Upravit body"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Návod k použití"
diff --git a/po/cy.po b/po/cy.po
index 6af12cc966..79b9be90b8 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,16 +6,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2011-05-19 21:21+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:20+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: Welsh \n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -23,11 +23,11 @@ msgid "Show all"
msgstr "Dangos pob"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Rhif tudalen:"
@@ -42,30 +42,30 @@ msgstr ""
"caniatáu diweddariadau traws-ffenest."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Chwilio"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -75,7 +75,7 @@ msgstr "Chwilio"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Ewch"
@@ -112,11 +112,11 @@ msgstr "Cafodd y gronfa ddata %1$s ei chreu."
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "Sylw cronfa ddata:"
+msgstr "Sylw cronfa ddata: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Sylwadau tabl"
@@ -127,14 +127,14 @@ msgstr "Sylwadau tabl"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Colofn"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -142,12 +142,12 @@ msgstr "Colofn"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Math"
@@ -159,9 +159,9 @@ msgstr "Math"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -171,7 +171,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Diofyn"
@@ -180,18 +180,18 @@ msgstr "Diofyn"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Cysylltu i"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Sylwadau"
@@ -202,11 +202,11 @@ msgstr "Sylwadau"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -224,12 +224,12 @@ msgstr "Na"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -239,8 +239,8 @@ msgstr "Ie"
msgid "View dump (schema) of database"
msgstr "Dangos dadlwythiad (sgema) y gronfa ddata"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata."
@@ -327,8 +327,8 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -348,8 +348,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Golygu neu allforio sgema perthynol"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -359,45 +359,44 @@ msgstr "Golygu neu allforio sgema perthynol"
msgid "Table"
msgstr "Tabl"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rhesi"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Maint"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "ar ddefnydd"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Cread"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Diweddariad diwethaf"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Gwiriad diwethaf"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -487,13 +486,13 @@ msgstr "Defnyddiwch Dablau"
msgid "SQL query on database %s :"
msgstr "Ymholiad SQL ar gronfa ddata %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Cyflwyno Ymholiad"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Mynediad wedi'i wrthod"
@@ -528,8 +527,8 @@ msgstr[0] "%s ergyd mewn tabl %s "
msgstr[1] "%s ergyd mewn tabl %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Pori"
@@ -609,11 +608,11 @@ msgstr "Cafodd golwg %s ei ollwng"
msgid "Table %s has been dropped"
msgstr "Cafodd tabl %s ei ollwng"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Mae tracio'n weithredol"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Nid yw tracio'n weithredol"
@@ -626,7 +625,7 @@ msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Dangos"
@@ -671,7 +670,7 @@ msgstr "Gwiriwch dablau â gorbenion"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -680,17 +679,18 @@ msgid "Export"
msgstr "Allforio"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Argraffu golwg"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Gwagu"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -735,15 +735,14 @@ msgid "Tracked tables"
msgstr "Tablau a draciwyd"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Cronfa ddata"
@@ -761,7 +760,7 @@ msgstr "Diweddarwyd"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Statws"
@@ -799,7 +798,7 @@ msgstr "Ciplun strwythur"
#: db_tracking.php:183
msgid "Untracked tables"
-msgstr "Tablau heb dracio "
+msgstr "Tablau heb dracio"
#: db_tracking.php:202 tbl_structure.php:680
msgid "Track table"
@@ -966,13 +965,13 @@ msgstr "Dangos clustnod"
msgid "The bookmark has been deleted."
msgstr "Cafodd y clustnod ei ddileu."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Nid oedd modd darllen y ffeil hon."
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1001,7 +1000,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Clustnodi %s a grëwyd"
@@ -1024,8 +1023,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1152,9 +1151,9 @@ msgid "Close"
msgstr "Cau"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Golygu"
@@ -1182,7 +1181,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Cyfanswm"
@@ -1193,12 +1192,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1289,13 +1288,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1361,27 +1360,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1431,9 +1430,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Dim"
@@ -1628,7 +1627,7 @@ msgstr "Esbonio SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Amser"
@@ -2006,7 +2005,7 @@ msgstr "Dydy %d ddim yn rhif rhes dilys."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2024,7 +2023,7 @@ msgstr "mewn ymholiad"
msgid "Show search criteria"
msgstr "Dangos ymholiad mewnosod"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2210,7 +2209,7 @@ msgstr "Newid cyfrinair"
msgid "More"
msgstr "Llu"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2303,63 +2302,63 @@ msgid "December"
msgstr "Rhagfyr"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Ion"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Chwe"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Maw"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Meh"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Gor"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aws"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Med"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Hyd"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Tach"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Rhag"
@@ -2400,32 +2399,32 @@ msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Llun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Maw"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Iau"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sad"
@@ -2567,11 +2566,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Maint ffont"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2579,47 +2578,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Ffolder dros dro ar goll."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Methu ag ysgrifennu i'r ddisg."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Cafodd y lanlwythiad ei atal gan estyniad."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Gwall anhysbys wrth lanlwytho ffeil."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2633,7 +2632,7 @@ msgstr "Dim indecs wedi'i ddiffinio!"
msgid "Indexes"
msgstr "Indecsau"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2671,46 +2670,46 @@ msgstr ""
"Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un "
"ohonyn nhw."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Cronfeydd Data"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Gweinydd"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Strwythur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Mewnosod"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Gweithrediadau"
@@ -2791,27 +2790,27 @@ msgstr ""
msgid "Engines"
msgstr "Peiriannau"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Gwall"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rhes wedi'i heffeithio."
msgstr[1] "%1$d rhes wedi'u heffeithio."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rhes wedi'i dileu."
msgstr[1] "%1$d rhes wedi'u dileu."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2859,53 +2858,53 @@ msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Cronfa ddata ffynhonnell"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Heb ddarganfod thema ddiofyn %s!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Crofna ddata annilys"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Enw tabl annilys"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Gwall wrth ailenwi tabl %1$s i %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Cafodd y tabl %s ei ailenwi i %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2913,16 +2912,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s."
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Dim rhagolwg ar gael"
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "cymerwch e"
@@ -2974,7 +2973,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3015,13 +3014,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Crëwch fersiwn %s o %s.%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3032,7 +3031,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3050,7 +3049,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3063,7 +3062,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3160,77 +3159,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Crëwch dudalen"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Terfynwyd llinellau gan"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Cyfrif ffeiliau log"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3306,7 +3305,7 @@ msgstr "Dewis Gweinydd"
msgid "Cookies must be enabled past this point."
msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3314,14 +3313,14 @@ msgstr ""
"Nid oes hawl mewngofnodi heb gyfrinair. Dyma'r gosodiad yn eich ffurfwedd "
"(gweler AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Dim gweithredoedd o fewn %s eiliad; mewngofnodwch eto."
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Methu â mewngofnodi i'r gweinydd MySQL"
@@ -3367,18 +3366,18 @@ msgstr "Tablau"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Gorbenion"
@@ -3486,8 +3485,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Ymholiad SQL"
@@ -3497,85 +3496,85 @@ msgstr "Ymholiad SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
-msgstr "Dywedodd MySQL:"
+msgstr "Dywedodd MySQL: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "Methu â chysylltu i'r gweinydd MySQL"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Esbonio SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Sgipio Esbonio SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Heb God PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Creu Cod PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Adfywio"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Sgipio Dilysu SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Dilysu SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Golygu mewnol yr ymholiad hwn"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Mewnol"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Proffilio"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sul"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y am %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s diwrnod, %s awr, %s munud a %s eiliad"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rheolweithiau"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3583,7 +3582,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Dechrau"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3592,7 +3591,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Cynt"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3601,7 +3600,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nesaf"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3609,49 +3608,49 @@ msgctxt "Last page"
msgid "End"
msgstr "Diwedd"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Neidio i gronfa ddata "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Pwyso i ddewis"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a "
"lanwlythwyd"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Argraffu"
@@ -3741,72 +3740,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Nid yn rhif bositif"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Nid yn rhif annegyddol"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Nid yn rhif porth ddilys"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Gwerth anghywir"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Data ar goll ar gyfer %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Newidyn"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "PHP extension to use"
msgid "SOAP extension not found"
msgstr "Estyniad PHP i'w ddefnyddio"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3825,7 +3824,7 @@ msgid "Set value: %s"
msgstr "Gosod gwerth: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Adfer gwerth diofyn"
@@ -4120,7 +4119,7 @@ msgid "Character set of the file"
msgstr "Set nodau y ffeil"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Fformat"
@@ -4228,7 +4227,7 @@ msgstr "Allwedd y label"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Math MIME"
@@ -4356,8 +4355,8 @@ msgstr "Gweithrediadau canlyniadau ymholiad"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4792,110 +4791,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "Tablau heb dracio "
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4903,440 +4906,440 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Ailenwi tabl i"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Trwsio edafedd"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Unrhyw westeiwr"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Cyfrifwch y tablau"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Estyniad PHP i'w ddefnyddio"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Cuddio cronfeydd data sydd yn cydweddu â mynegiant arferol (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Cuddio cronfeydd data"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabl hanes ymholiadau SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Enw'r gwesteiwr ble mae'r gweinydd MySQL yn rhedeg"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Enw gwesteiwr y gweinydd"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL allgofnodi"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Ceisiwch â chysylltu heb gyfrinair"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Cysylltwch heb gyfrinair"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
#, fuzzy
#| msgid ""
#| "n use MySQL wildcard characters (% and _), escape them if you want use ir "
@@ -5352,313 +5355,313 @@ msgstr ""
"ydych am eu defnyddio'n llythrennol, h.y. defnyddiwch 'my\\_db' ac nid "
"'my_db'"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Dangoswch gronfeydd data a restrir yn unig"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Gadewch yn wag os nac ydych yn defnyddio 'config auth'"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Cyfrinair am 'config auth'"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "enw cronfa ddata"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Dadansoddi tabl"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Soced gweinydd"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Defnyddio SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Sgena PDF: cyfesurynnau tabl"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Dangos tabl colofnau"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Ychwanegu DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Ychwanegu DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Ychwanegu DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Datganiadau i'w tracio"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabl tracio ymholiadau SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Dangos ffurflen newid cyfrinair"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Dangos ffurflen creu cronfa ddata"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Dangos fersiynau"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Relational display column"
msgid "Show display direction"
msgstr "Colofn dangosydd perthynol"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show function fields"
msgid "Show field types"
msgstr "Dangos meysydd swyddogaeth"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Dangos meysydd swyddogaeth"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Dangos grid"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5666,52 +5669,52 @@ msgstr ""
"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Dangos cysylltiad i phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Dangos ymholiadau SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "mewn ymholiad"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Dangos ystadegau"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5719,28 +5722,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Neidio tablau ar glo"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5750,80 +5753,80 @@ msgstr ""
msgid "Password"
msgstr "Cyfrinair"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Enw defnyddiwr"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Textarea columns"
msgstr "Ychwanegu/Dileu colofnau"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Tab tabl diofyn"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5831,59 +5834,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Cyfeiriadur lanlwytho"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Defnyddio chwiliad cronfa ddata"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Gwiriwch y fersiwn diweddaraf"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Gwirio fersiwn"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5912,88 +5915,88 @@ msgid "Signon authentication"
msgstr "Yn dilysu..."
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Taenlen Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Lliw cwstwm"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Databases statistics"
msgid "Database export options"
msgstr "Ystadegau cronfeydd data"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV ar gyfer MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Testun Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "Methu â chysylltu i'r gweinydd MySQL"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Methu â chysylltu i'r gweinydd MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6013,23 +6016,23 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Dyw'r gweinydd ddim yn ymateb"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Manylion..."
@@ -6093,7 +6096,7 @@ msgstr "Crëwch dabl"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Enw"
@@ -6278,26 +6281,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "Crëwch fersiwn %s o %s.%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6654,7 +6657,7 @@ msgstr "Tudalennau prysur"
#: libraries/engines/innodb.lib.php:207
msgid "Latched pages"
-msgstr "Tudalennau "
+msgstr "Tudalennau"
#: libraries/engines/innodb.lib.php:218
msgid "Buffer Pool Activity"
@@ -7014,18 +7017,17 @@ msgid "Display MIME types"
msgstr "Mathau MIME ar gael"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Gwesteiwr"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Amser Generadu"
@@ -7233,15 +7235,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7339,7 +7333,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7698,7 +7692,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Trawsffurfiad porwr"
@@ -7795,10 +7789,10 @@ msgid "Variable"
msgstr "Newidyn"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Gwerth"
@@ -7857,7 +7851,7 @@ msgstr "Generadu Cyfrinair"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7897,8 +7891,8 @@ msgid "Edit event"
msgstr "Golygu gweinydd"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7959,7 +7953,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8015,7 +8009,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
@@ -8101,59 +8095,59 @@ msgstr "Dychwelyd math"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Rheolweithiau"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Swyddogaeth"
@@ -8364,7 +8358,7 @@ msgstr "Tabl cynnwys"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -8467,12 +8461,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Iaith anhysbys: %1$s."
@@ -8520,7 +8514,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Clirio"
@@ -8529,11 +8523,11 @@ msgstr "Clirio"
msgid "Columns"
msgstr "Colofnau"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Clustnodwch yr ymholiad SQL hwn"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8619,13 +8613,13 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Mae tracio'n weithredol"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8633,36 +8627,36 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indecs"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Move column"
msgstr "Ychwanegu/Dileu colofnau"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8670,73 +8664,73 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Dim"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Fel a ddiffiniwyd:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Cynradd"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Testunllawn"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Ychwanegwch %s colofn"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Rydych chi wedi ychwanegu o leiaf un golofn."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Peiriant Storio"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Diffiniad PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Chwilio"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8864,11 +8858,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8878,8 +8872,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9050,18 +9044,24 @@ msgstr ""
msgid "No databases"
msgstr "Dim cronfeydd data"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "enw tabl"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "enw tabl"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Crëwch dabl"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Dewiswch gronfa ddata"
@@ -10216,7 +10216,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -11330,37 +11330,37 @@ msgstr ""
msgid "Show form"
msgstr "Dangos ffurflen"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11369,39 +11369,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11409,21 +11409,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11432,7 +11432,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11442,37 +11442,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11482,8 +11482,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Dim cronfeydd data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11517,21 +11517,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Dilysu SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11667,7 +11675,7 @@ msgstr "Gwerth"
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11882,45 +11890,45 @@ msgstr "Tynnu'r ymraniadu"
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "No tables"
msgid "Showing tables"
msgstr "Dim tablau"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12226,29 +12234,29 @@ msgstr "Traciwch y datganiadau trin data hyn:"
msgid "Create version"
msgstr "Crëwch fersiwn"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "in query"
msgid "Additional search criteria"
msgstr "mewn ymholiad"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "PHP extension to use"
msgid "How to use"
diff --git a/po/da.po b/po/da.po
index 71fbd88650..20c2cb5f25 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-29 16:39+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:00+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: danish \n"
"Language: da\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Vis alle"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Side nummer:"
@@ -39,30 +39,30 @@ msgstr ""
"i sikkerhedsindstillingerne."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Søg"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Søg"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Udfør"
@@ -111,8 +111,8 @@ msgid "Database comment: "
msgstr "Databasekommentar: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tabel kommentarer"
@@ -123,14 +123,14 @@ msgstr "Tabel kommentarer"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Kolonnenavn"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "Kolonnenavn"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Datatype"
@@ -155,9 +155,9 @@ msgstr "Datatype"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulværdi"
@@ -167,7 +167,7 @@ msgstr "Nulværdi"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Standardværdi"
@@ -176,18 +176,18 @@ msgstr "Standardværdi"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Linker til"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Kommentarer"
@@ -198,11 +198,11 @@ msgstr "Kommentarer"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "Nej"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "Ja"
msgid "View dump (schema) of database"
msgstr "Vis dump (skema) af database"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Ingen tabeller fundet i databasen."
@@ -323,8 +323,8 @@ msgstr "Skift til den kopierede database"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Editer eller eksporter relations skema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Editer eller eksporter relations skema"
msgid "Table"
msgstr "Tabel"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rækker"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Størrelse"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "i brug"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Oprettelse"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Sidste opdatering"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Sidste check"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -481,13 +480,13 @@ msgstr "Benyt tabeller"
msgid "SQL query on database %s :"
msgstr "SQL-forespørgsel til database %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Send forespørgsel"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Adgang nægtet"
@@ -523,8 +522,8 @@ msgstr[0] "%s sammenfald i tabel %s "
msgstr[1] "%s sammenfald i tabel %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Vis"
@@ -600,11 +599,11 @@ msgstr "Visning %s er blevet slettet"
msgid "Table %s has been dropped"
msgstr "Tabel %s blev slettet"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Sporing er aktiv."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Sporing er ikke aktiv."
@@ -617,7 +616,7 @@ msgstr ""
"Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Visning"
@@ -662,7 +661,7 @@ msgstr "Check tabeller der har overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -671,19 +670,20 @@ msgid "Export"
msgstr "Eksporter"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Udskriv"
# By "Empty", if this is an action, it should translate to "Tøm" but if it's a
# state it should translate to "Tom".
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Tøm"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -726,15 +726,14 @@ msgid "Tracked tables"
msgstr "Sporede tabeller"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Database"
@@ -752,7 +751,7 @@ msgstr "Opdateret"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -944,13 +943,13 @@ msgstr "Viser bogmærke"
msgid "The bookmark has been deleted."
msgstr "Bogmærket er fjernet."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Filen kunne ikke læses"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -981,7 +980,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Kunne ikke indlæse importplugins, check venligst din installation!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Bogmærke %s oprettet"
@@ -1008,8 +1007,8 @@ msgstr ""
"normalt at phpMyAdmin ikke vil være i stand til at gennemføre importen med "
"mindre du forøger PHP-tidsbegrænsningerne."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1125,9 +1124,9 @@ msgid "Close"
msgstr "Luk"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Ret"
@@ -1151,7 +1150,7 @@ msgstr "Statiske data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1162,12 +1161,12 @@ msgid "Other"
msgstr "Andet"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1250,13 +1249,13 @@ msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1314,27 +1313,27 @@ msgid "Connections"
msgstr "Forbindelser"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1376,9 +1375,9 @@ msgstr "Tilføj mindst en variabel til serien"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Ingen"
@@ -1573,7 +1572,7 @@ msgstr "Forklar SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tid"
@@ -1917,7 +1916,7 @@ msgstr "%d er ikke et gyldigt rækkenummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1931,7 +1930,7 @@ msgstr "Skjul søgekriterie"
msgid "Show search criteria"
msgstr "Vis søgekriterie"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Forstør søgning"
@@ -2029,7 +2028,7 @@ msgstr ""
#: js/messages.php:348
msgid "Add an option for column "
-msgstr "Tilføj mulighed for kolonne"
+msgstr "Tilføj mulighed for kolonne "
#: js/messages.php:351
msgid "Press escape to cancel editing"
@@ -2070,7 +2069,7 @@ msgid ""
msgstr ""
"Denne tabel indeholder ikke en unik kolonne. Funktioner relateret til "
"redigering af gitter, afkrydsningsboks og links til redigering, kopiering og "
-"sletning fungerer måske ikke, efter at data er gemt. "
+"sletning fungerer måske ikke, efter at data er gemt."
#: js/messages.php:360
msgid ""
@@ -2115,7 +2114,7 @@ msgstr "Ændre adgangskode"
msgid "More"
msgstr "Mere"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2202,63 +2201,63 @@ msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "dec"
@@ -2296,32 +2295,32 @@ msgid "Sun"
msgstr "søn"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "man"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "tir"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "ons"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "fre"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "lør"
@@ -2466,11 +2465,11 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Forkerte rettigheder på konfigurationsfil. Må ikke være skrivbar af alle!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Skriftstørrelse"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2478,11 +2477,11 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr "Filen var ikke en uploaded fil."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2490,27 +2489,27 @@ msgstr ""
"Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-"
"formularen."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Den uploadede fil blev kun delvist uploaded."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Mangler en midlertidig mappe."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Kunne ikke skrive fil til disk."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Filupload stoppet af udvidelse."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Ukendt fejl i filupload."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2518,11 +2517,11 @@ msgstr ""
"Fejl ved flytning af den uploadede fil, se [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Fejl under flytning af uploaded fil."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Kan ikke læse (flyttet) uploaded fil."
@@ -2536,7 +2535,7 @@ msgstr "Intet indeks defineret!"
msgid "Indexes"
msgstr "Indeks"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2574,46 +2573,46 @@ msgstr ""
"Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan "
"sikkert fjernes."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Databaser"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Indsæt"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operationer"
@@ -2694,27 +2693,27 @@ msgstr "Udvidelsesmoduler"
msgid "Engines"
msgstr "Lagre"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fejl"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d række påvirket."
msgstr[1] "%1$d rækker påvirket."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d række slettet."
msgstr[1] "%1$d rækker slettet."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2759,46 +2758,46 @@ msgstr "%s er slået fra på denne MySQL-server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Denne MySQL-server understøtter ikke %s datalager."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
-msgstr "ukendt tabelstatus:"
+msgstr "ukendt tabelstatus: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Kildedatabase"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s ikke fundet!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Ugyldig database"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Ugyldigt tabelnavn"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fejl ved omdøbning af tabel %1$s til %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabellen %s er nu omdøbt til %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Kunne ikke gemme brugerindstillinger for tabel"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2807,7 +2806,7 @@ msgstr ""
"Kunne ikke rydde op i indstillinger for tabel-UI (se $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2818,16 +2817,16 @@ msgstr ""
"efter at du opfrisker denne side. Undersøg, om tabelstrukturen er blevet "
"ændret."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Ingen gyldig billedsti for tema %s fundet!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Intet billede til rådighed."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "vælg dette"
@@ -2879,7 +2878,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2920,13 +2919,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Opret version %s af %s.%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2937,7 +2936,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2955,7 +2954,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2968,7 +2967,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3067,77 +3066,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Lav et nyt indeks"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Linjestreng"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3213,7 +3212,7 @@ msgstr "Servervalg"
msgid "Cookies must be enabled past this point."
msgstr "Herefter skal cookies være slået til."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3221,15 +3220,15 @@ msgstr ""
"Det er ifølge konfigurationen ikke tilladt at logge ind uden en adgangskode "
"(se AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Ingen aktivitet i de seneste %s sekunder eller mere, log venligst ind igen"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Kan ikke logge ind på MySQL-serveren"
@@ -3273,18 +3272,18 @@ msgstr "Tabeller"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overhead"
@@ -3396,8 +3395,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-forespørgsel"
@@ -3407,144 +3406,144 @@ msgstr "SQL-forespørgsel"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL returnerede: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Kunne ikke oprette forbindelse til SQL validator!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Forklar SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Spring over Forklar SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Uden PHP-kode"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Fremstil PHP-kode"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Opdater"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Spring over Valider SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Valider SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Åben linje til redigering af forespørgslen"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "I linje"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilering"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "søn"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %m %Y kl. %H:%M:%S"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dage, %s timer, %s minutter og %s sekunder"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Manglende parameter"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Start"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Forrige"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Næste"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Slut"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Hop til database "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Klik for at skifte"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Gennemse din computer:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Vælg fra %s - webserverens upload-mappe:"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Mappen du har sat til upload-arbejde kan ikke findes"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Der er ikke nogen filer at uploade"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Udfør"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Print"
@@ -3630,68 +3629,68 @@ msgstr "begge de ovenfor anførte"
msgid "neither of the above"
msgstr "ingen af de ovenfor anførte"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Ikke et positivt tal"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Ikke et ikke-negativt tal"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Ikke et gyldigt portnummer"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Ukorrekt værdi"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Værdien skal være mindre end eller lig med %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Manglende data for %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "ikke tilgængelig"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" er afhængig af udvidelsen %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "importen kommer ikke til at fungere, funktionen (%s) mangler"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "eksporten kommer ikke til at fungere, funktionen (%s) mangler"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL Validator er deaktiveret"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP-udvidelse ikke fundet"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maksimum %s"
@@ -3712,7 +3711,7 @@ msgid "Set value: %s"
msgstr "Indstil værdien %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Gendan standardværdi"
@@ -4017,7 +4016,7 @@ msgid "Character set of the file"
msgstr "Filens tegnsæt"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4116,7 +4115,7 @@ msgstr "Mærke nøgle"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-type"
@@ -4240,8 +4239,8 @@ msgstr "Tilpas standardindstillinger"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV (kommasepareret)"
@@ -4679,52 +4678,58 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Mindste antal tabeller der skal vises i tabel-filterboksen"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Mindste antal tabeller der skal vises i tabel-filterboksen"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Streng, der inddeler databaser i træ"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Separator til databaseinddeling"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr "Kun i lille version; vis databaser i træ (afgjort vha. separator)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Vis databaser i træ"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Deaktiver dette, hvis du ønsker at se alle databaser på een gang"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Brug lille version"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maksimal dybde på databasetræ"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Streng, der inddeler tabeller i træ"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Separator til tabelinddeling"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL som logoet i navigations-rammen vil pege på"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo link-URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4732,38 +4737,38 @@ msgstr ""
"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt ([kbd]"
"new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo link target"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Fremhæv server under musepil"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Aktiver fremhævning"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Tidligere anvendte tabeller"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "Maksimalt antal tegn vist i ikke-numerisk kolonne ved gennemsyn"
# karakterer gives i skolen eller er personer i film
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Begræns antal tegn i kolonne"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4773,23 +4778,23 @@ msgstr ""
"logout kun for den aktuelle server.Sættes denne til FALSE, kan man let "
"glemme at logge ud fra andre servere, når man er forbundet til flere servere."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Slet alle cookies, når der logges ud"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
"Definer om den foregående login skal gentages eller ej i cookie "
-"autentifikationstilstand "
+"autentifikationstilstand"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Gendan brugernavn"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4801,48 +4806,48 @@ msgstr ""
"blive slettet så snart browservinduet lukkes. Dette anbefales for ikke-"
"sikrede omgivelser."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Login cookie sletning"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Definerer hvor længe (i sekunder) en login cookie er gyldig"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Gyldighed for login cookie"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Dobbelt størrelse for tekstboks for LONGTEXT kolonner"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Større tekstboks for LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Maksimalt antal tegn, når en SQL-forespørgsel vises"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Maksimal vist SQL-længde"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Brugere kan ikke sætte en højere værdi"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "Maksimalt antal databaser vist i venstre ramme og databaseliste"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Maksimalt antal databaser"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4852,19 +4857,19 @@ msgstr ""
"indeholder flere rækker, links til "Forrige" og "Næstet" "
"vil blive vist."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maksimalt antal viste rækker"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Maksimalt antal tabeller vist i tabellisten"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Maksimalt antal tabeller"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4872,11 +4877,11 @@ msgstr ""
"Deaktiver standardadvarslen som vises, hvis mcrypt mangler til cookie "
"autentifikation"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt advarsel"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4884,43 +4889,43 @@ msgstr ""
"Antallet af bytes et script må allokere, fx. [kbd]32M[/kbd] ([kbd]0[/kbd] "
"for ubegrænset)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Hukommelsesgrænse"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Dette er Ret, Kopi og Slet links"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Hvor links til tablerækker skal vises"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Brug naturlig rækkefølge ved sortering af tabeller og databasenavne"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Naturlig rækkefølge"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Brug kun ikoner, kun tekst eller begge"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Navigationsbjælke med ikoner"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "brug GZip output buffering til forhøjet hastighed i HTTP overførsler"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip output buffering"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4928,19 +4933,19 @@ msgstr ""
"[kbd]SMART[/kbd] - dvs faldende orden for kolonner af type TIME, DATE, "
"DATETIME og TIMESTAMP ellers stigende orden"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Standard sorteringsrækkefølge"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Brug vedvarende forbindelser til MySQL databaser"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Vedvarende forbindelser"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4950,23 +4955,23 @@ msgstr ""
"hvis nogen af de påkrævede tabeller i phpMyAdmin configuration storage ikke "
"kunne findes."
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Manglende phpMyAdmin configuration storage tabeller"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Tabeloperationer med ikoner"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Tillad ikke redigering af BLOB og BINARY kolonner"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Beskyt binære kolonner"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4976,111 +4981,111 @@ msgstr ""
"configuration storage). Hvis deaktiveret bruges JS-rutiner til at vise "
"forespørgselshistorik (mistes når vinduet lukkes)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Permanent forespørgselshistorie"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Hvor mange forespørgsler er gemt i historikken"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Længde på forespørgselshistorik"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Fane vist, når et nyt forespørgselsvindue åbnes"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Standardfane for forespørgselsvindue"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Højde (i pixels) af forespørgselsvindue"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Højde af forspørgselsvindue"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Bredde (i pixels) af forspørgselsvindue"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Bredde af forspørgselsvindue"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Vælg hvilke funktioner, der vil blive brugt for tegnsætskonvertering"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Omkodningsværktøj"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Når tabeller vises huskes sorteringen af hver tabel"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Husk tabellens sortering"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "Gentag overskrifter for hver X celler, [kbd]0[/kbd] deaktiverer dette"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Gentag overskrifter"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Gem alle redigerede celler med det samme"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Mappe, hvor eksporterede data kan gemmes på serveren"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Gemmemappe"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Lades blank, hvis ikke brugt"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Autorisationsrækkefølge for vært"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Lades blank for standardværdi"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Host autorisationsregler"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Tillad login uden adgangskode"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Tillad root login"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP Basic Auth Realm navn, der vises ved HTTP Auth"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5090,19 +5095,19 @@ msgstr ""
"autentifikation[/a] (ikke fundet i din dokumentrod; forslag: /etc/swekey."
"conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey konfigurationsfil"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Metode for autentifikation"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Autentifikationstype"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5110,11 +5115,11 @@ msgstr ""
"Lades blank for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
"a] understøttelse, forslag: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Bogmærketabel"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5122,31 +5127,31 @@ msgstr ""
"Lades blank ved ingen kolonnekommentarer/mime types, forslag: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabel for kolonneinformation"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Komprimer forbindelse til MySQL server"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Komprimer forbindelse"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Hvordan forbindes til server, behold [kbd]tcp[/kbd] hvis usikker"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Forbindelsestype"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Adgangskode for kontrolbruger"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5154,31 +5159,31 @@ msgstr ""
"En speciel MySQL bruger med begrænsede tilladelser. Mere information på "
"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Kontrolbruger"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Kontrolbruger"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Optæl tabeller, når databaselisten vises"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Optæl tabeller"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5186,11 +5191,11 @@ msgstr ""
"Lad være blank for ingen Designer support, forslag: [kbd]pma_designer_coords"
"[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Designer tabel"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5198,28 +5203,28 @@ msgstr ""
"Mere information om [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Deaktiver brug af INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Hvilken PHP-udvidelse der skal bruges; du bør bruge mysqli hvis understøttet"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP-udvidelse, der skal bruges"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Gem databaser som matcher regulært udtryk (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Skjul databaser"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5227,43 +5232,43 @@ msgstr ""
"Lades blank for ingen historik for SQL-forespørgsler, forslag: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL forespørgselsshistoriktabel"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Servernavn, hvor MySQL server kører"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Servernavn"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Log ud URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Maksimalt antal tabeller vist i tabellisten"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Prøv at forbinde uden adganskode"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Forbind uden adgangskode"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5277,30 +5282,30 @@ msgstr ""
"navnene efter hinanden og brug [kbd]*[/kbd] i slutningen for at vise resten "
"i alfabetisk orden."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Vis kun listede databaser"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Lades tom hvis du ikke bruger config auth"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Adgangskode for config auth"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Lades blank for ingen understøttelse af PDF-skematik, forslag: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF-skematik: pages tabel"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5310,19 +5315,19 @@ msgstr ""
"wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for komplet information. Lades blank "
"ved ingen understøttelse. Forslag: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Databasenavn"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "Port hvorpå MySQL server lytter, lades tom for standard"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Serverport"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5330,11 +5335,11 @@ msgstr ""
"Lades blank for ingen \"vedvarende\" senest benyttede tabeller på tværs af "
"sessioner, forslag: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Senest benyttede tabel"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5342,19 +5347,19 @@ msgstr ""
"Lades blank for ingen understøttelse af [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a], forslag: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relationstabel"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL-kommando til at hente tilgængelige databaser"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES kommando"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5362,42 +5367,42 @@ msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/"
"a] for et eksempel"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Login sessionsnavn"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Login URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "Socket hvorpå MySQL server lytter, lades tom for standard"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Brug SSL til forbindelse til MySQL-serveren"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Brug SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Lades blank for ingen understøttelse af PDF-skematik, forslag: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF-skematik: tabel coordinates"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5405,11 +5410,11 @@ msgstr ""
"Tabel til at beskrive visningskolonnerne, lades blank for ingen "
"understøttelset; forslag: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Visningskolonnetabel"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5417,11 +5422,11 @@ msgstr ""
"Lades blank for ingen \"vedvarende\" tabel UI præferencer på tværs af "
"sessioner, forslag: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "UI præference tabel"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5429,11 +5434,11 @@ msgstr ""
"Om en DROP DATABASE IF EXISTS kommando skal tilføjes som første linje i "
"loggen når en database oprettes."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Tilføj DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5441,11 +5446,11 @@ msgstr ""
"Om en DROP TABLE IF EXISTS kommando skal tilføjes som første linje i loggen "
"når en tabel oprettes."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Tilføj DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5453,20 +5458,20 @@ msgstr ""
"Om en DROP VIEW IF EXISTS kommando skal tilføjes som første linje i loggen "
"når et view oprettes."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Tilføj DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definerer listen af forspørgsler, som auto-creation bruger for nye sessioner."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Forespørgsler, der skal spores"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5474,22 +5479,22 @@ msgstr ""
"Lades blank for ingen understøttelse af SQL-forspørgselssporing, forslag: "
"[kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Sporingstabel for SQL-forespørgsler"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Om sporingsmekanismen opretter versioner automatisk for tabeller og views."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Opret versioner automatisk"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5497,15 +5502,15 @@ msgstr ""
"Lades blank for ingen bruger preference storage i database, forslag: [kbd]"
"pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Bruger preference storage tabel"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Bruger for config auth"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5513,19 +5518,19 @@ msgstr ""
"En brugervenlig beskrivelse af serveren. Lad stå tom for at vise "
"værtstnavnet i stedet."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Udvidet navn for denne server"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Om en "vis alle (rækker)" knap, skal vises for brugeren"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Tillad visning af alle rækker"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5536,83 +5541,83 @@ msgstr ""
"konfigurationsfilen; dette begrænser ikke muligheden for at udføre den samme "
"kommando direkte"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Vis formular til ændring af adgangskode"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Vis formular til databaseoprettelse"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Vis flere operationer"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Vis master status"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
"Definerer om type display retning indstilling vises, når en tabel gennemses"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Vis retning for visning"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
"Definerer om typefelter skal startes med at vises i ret/indsæt tilstand"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Vis felttyper"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Vis funktionsfelterne i rediger/indsæt tilstand"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Vis funktionsfelter"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Om hints skal vises eller ej"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Vis hint"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5620,42 +5625,42 @@ msgstr ""
"Viser link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Vis phpinfo() link"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Vis detaljeret MySQL serverinformation"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Definerer om SQL-forespørgsler genereret af phpMyAdmin skal vises"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Vis SQL-forespørgsler"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Skjul forespørgeselsboks"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "Tillad visning af database og databasestatistikker (eks. diskforbrug)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Vis statistik"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5663,11 +5668,11 @@ msgstr ""
"Hvis tooltips er aktiverede og en databasekommentar er sat, vil dette skifte "
"mellem kommentaren og det virkelige navn"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Vis databasekommentar i stedet for dens navn"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5679,29 +5684,29 @@ msgstr ""
"['LeftFrameTableSeparator'], så kun mappen benævnes som aliaset; tabelnavnet "
"selv forbliver uændret."
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Vis tabelkommentar stedet for dens navn"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Vis tabelkommentarer i tooltips"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Marker brugte tabeller og gør det muligt at vise databaser med låste tabeller"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Spring over låste tabeller"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Kræver SQL Validator bliver aktiveret"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5711,7 +5716,7 @@ msgstr "Kræver SQL Validator bliver aktiveret"
msgid "Password"
msgstr "Adgangskode"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5719,11 +5724,11 @@ msgstr ""
"[strong]Advarsel[/strong] kræver installation af PHP SOAP udvidelsen eller "
"PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Aktiver SQL Validator"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5731,20 +5736,20 @@ msgstr ""
"Hvis du har dit eger brugernavn, så angiv det her (standard [kbd]anonymous[/"
"kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Brugernavn"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "En advarsel vises på hovedsiden, hvis Suhosin er detekteret"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin advarsel"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5753,11 +5758,11 @@ msgstr ""
"fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet "
"(*1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Tekstboks kolonner"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5766,31 +5771,31 @@ msgstr ""
"fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet "
"(*1,25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Tekstboks rækker"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Titel på browservindue, når en database er valgt"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Titel på browservindue, når ingenting er valgt"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Standardtitel"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titel på browservindue, når en server er valgt"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Titel på browservindue, når en tabel er valgt"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5802,27 +5807,27 @@ msgstr ""
"Forwarded-For) header der kommer fra proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste af trusted proxies til IP tillad/afvis"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Mappe på server, hvor man kan uploade filer til import"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Mappe til uploads"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Tillad søgning i hele databasen"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Brug databasesøgning"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5830,27 +5835,27 @@ msgstr ""
"Når deaktiveret kan brugere ikke sætte nogen af indstillingerne nedenfor "
"uafhængig af checkboksen til højre"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Aktiver udviklerfanen i indstillinger"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Check for den seneste version"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Aktiverer check for den seneste version på hovedsiden for phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Versionscheck"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5858,7 +5863,7 @@ msgstr ""
"Aktiver [a@http://en.wikipedia.org/wiki/ZIP_(fil_format)]ZIP[/a] "
"komprimering ved import and eksport operationer"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5879,82 +5884,82 @@ msgid "Signon authentication"
msgstr "Login autentifikation"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV vha. LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document regneark"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Hurtig"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Brugerdefineret"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Database eksportindstillinger"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV til MS Excel-data"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document tekst"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Kunne ikke initialisere Drizzle forbindelsesbibliotek."
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Kunne ikke forbinde til Drizzle server"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Kunne ikke forbinde til MySQL server"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Tomt brugernavn ved brug af config autentifikation"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Tomt signon sessionsnavn ved brug af signon autentifikation"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Tomt signon URL ved brug af signon autentifikation"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Tom phpMyAdmin kontrolbruger ved brug af pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Tom phpMyAdmin adgangskode for kontrolbruger ved brug af pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Ukorrekt IP-adresse: %s"
@@ -5974,7 +5979,7 @@ msgstr "%s udvidelsen mangler. Check din PHP-konfiguration."
msgid "possible deep recursion attack"
msgstr "muligt dybt rekursionsangreb"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5982,17 +5987,17 @@ msgid ""
"configured)."
msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveren svarer ikke"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detaljer..."
@@ -6057,7 +6062,7 @@ msgstr "Opret tabel"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Navn"
@@ -6131,7 +6136,7 @@ msgstr "Output:"
#: libraries/display_export.lib.php:186 libraries/display_export.lib.php:212
#, php-format
msgid "Save on server in the directory %s "
-msgstr "Gem på serveren i mappen %s "
+msgstr "Gem på serveren i mappen %s "
#: libraries/display_export.lib.php:204
msgid "Save output to a file"
@@ -6214,26 +6219,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Inkodningskonvertering"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "Opret version %s af %s.%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6247,7 +6252,7 @@ msgid ""
msgstr ""
"Filen som uploades er sandsynligvis større enn den maksimalt tilladte "
"størrelse, eller dette er en kendt fejl i webkit-baserede browsere (Safari, "
-"Google Chrome, Arora etc.) "
+"Google Chrome, Arora etc.)."
#: libraries/display_import.lib.php:69
#, php-format
@@ -6954,18 +6959,17 @@ msgid "Display MIME types"
msgstr "Vis MIME-typer"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Vært"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Genereringstid"
@@ -7191,15 +7195,7 @@ msgstr "Ingen data fundet for GIS visualization."
msgid "GLOBALS overwrite attempt"
msgstr "forsøg på overskrivning af GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-resultat"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Genereret af"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerede ingen data (fx ingen rækker)."
@@ -7207,7 +7203,7 @@ msgstr "MySQL returnerede ingen data (fx ingen rækker)."
#: libraries/import.lib.php:1118
msgid ""
"The following structures have either been created or altered. Here you can:"
-msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du: "
+msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du:"
#: libraries/import.lib.php:1119
msgid "View a structure's contents by clicking on its name"
@@ -7271,7 +7267,7 @@ msgstr ""
#: libraries/import/csv.php:94
msgid "Column names: "
-msgstr "Kolonnenavne:"
+msgstr "Kolonnenavne: "
#: libraries/import/csv.php:116 libraries/import/csv.php:129
#: libraries/import/csv.php:134 libraries/import/csv.php:139
@@ -7302,7 +7298,7 @@ msgstr "Ugyldigt kolonneantal i CSV-input på linie %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Tabelnavn"
@@ -7337,7 +7333,7 @@ msgid ""
"the issue and try again."
msgstr ""
"Den angivne XML-fil var enten forkert udformet eller ukomplet. Ret fejlen og "
-"prøv igen. "
+"prøv igen."
#: libraries/import/shp.php:20
msgid "ESRI Shape File"
@@ -7426,7 +7422,7 @@ msgstr "Tegnsæt"
#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
#: tbl_change.php:612
msgid "Binary"
-msgstr "Binært "
+msgstr "Binært"
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
@@ -7662,7 +7658,7 @@ msgstr "Oprettelse af PDFer"
msgid "Displaying Column Comments"
msgstr "Viser kolonne-kommentarer"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
@@ -7767,10 +7763,10 @@ msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Værdi"
@@ -7831,7 +7827,7 @@ msgstr "Generer adgangskode"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7867,8 +7863,8 @@ msgid "Edit event"
msgstr "Rediger hændelse"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Fejl i udførsel af forespørgsel"
@@ -7918,10 +7914,10 @@ msgstr "Efter udførsel bevar"
msgid "Definer"
msgstr "Opretter"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
-msgstr "Opretter skal være i formatet \"brugernavn@værtsnavn\" "
+msgstr "Opretter skal være i formatet \"brugernavn@værtsnavn\""
#: libraries/rte/rte_events.lib.php:525
msgid "You must provide an event name"
@@ -7981,7 +7977,7 @@ msgstr ""
"eventuelle problemer."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Invalid rutinetype: \"%s\""
@@ -8052,17 +8048,17 @@ msgstr "Sikkerhedstype"
msgid "SQL data access"
msgstr "SQL dataadgang"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Du skal angive et rutinenavn"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Ugyldig retning \"%s\" givet for parameter."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8070,41 +8066,41 @@ msgstr ""
"Du skal angive længde/værdier for rutineparametre af typen ENUM, SET, "
"VARCHAR og VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Du skal angive et navn og en type for hver rutineparameter."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Du skal angive en gyldig returtype for rutinen."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Du skal angive en rutinedefinition."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d række påvirket af den sidste SQL-sætning inde i proceduren"
msgstr[1] "%d rækker påvirket af den sidste SQL-sætning inde i proceduren"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Udførelsesresultater af rutine %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Udfør rutine"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Rutineparametre"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funktion"
@@ -8281,7 +8277,7 @@ msgstr "Indholdsfortegnelse"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attributter"
@@ -8380,12 +8376,12 @@ msgid "Toggle scratchboard"
msgstr "Tegnebræt til/fra"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ukendt sprog: %1$s."
@@ -8431,7 +8427,7 @@ msgstr "Kør SQL-forespørgsel/forespørgsler på server %s"
msgid "Run SQL query/queries on database %s"
msgstr "Kør SQL-forspørgsel(er) på database %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Ryd"
@@ -8440,11 +8436,11 @@ msgstr "Ryd"
msgid "Columns"
msgstr "Kolonner"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Lav bogmærke til denne SQL-forespørgsel"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Lad alle brugere bruge dette bogmærke"
@@ -8462,7 +8458,7 @@ msgstr "Adskiller"
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Vis forespørgslen her igen "
+msgstr "Vis forespørgslen her igen"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8545,13 +8541,13 @@ msgstr ""
"SQL-validatoren kunne ikke initialiseres. Check venligst at du har de "
"nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "Sporing af %s.%s er aktiveret."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8563,7 +8559,7 @@ msgstr ""
"eller et enkelt anførselstegn (\"'\") blandt disse værdier, så tilføj en "
"ekstra backslash (fx '\\\\xyz' eller 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8571,19 +8567,19 @@ msgstr ""
"For standardværdier, indtast venligst kun en enkelt værdi, uden backslash "
"escaping eller quotes, ud fra følgende format: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Fjern kolonne(r)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8592,11 +8588,11 @@ msgstr ""
"For en liste over mulige transformationsindstillinger og deres MIME-type "
"transformationer, klik på %stransformationsbeskrivelser%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Transformationsindstillinger"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8608,72 +8604,72 @@ msgstr ""
"\") eller en apostrof (\"'\") i værdierne, backslash det (for eksempel '\\"
"\\xyz' eller 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM eller SET data for lang?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Få mere redigeringsplads"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Ingen"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Som defineret:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primær"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fuldtekst"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Efter %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Tilføj %s kolonne(r)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Du skal tilføje mindst en kolonne."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Datalager"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operatør"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Tabelsøgning"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Rediger/Indsæt"
@@ -8839,11 +8835,11 @@ msgstr ""
"Dine præferencer vil kun blive gemt for den aktuelle session. At gemme dem "
"permanent kræver %sphpMyAdmin configuration storage%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Kunne ikke gemme konfiguration"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8855,8 +8851,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Ingen filer fundet i ZIP arkivet!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Fejl i ZIP arkiv:"
@@ -8920,7 +8916,7 @@ msgstr "Vis PHP-information"
#: main.php:250
msgid "Official Homepage"
-msgstr "Officiel phpMyAdmin hjemmeside "
+msgstr "Officiel phpMyAdmin hjemmeside"
#: main.php:251
msgid "Contribute"
@@ -9032,16 +9028,22 @@ msgstr "Server med Suhosin.Se %sdocumentation%s for mulige problemer."
msgid "No databases"
msgstr "Ingen databaser"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "filtrer tabeller efter navn"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "filtrer tabeller efter navn"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Opret tabel"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Vælg en database"
@@ -9622,7 +9624,7 @@ msgstr "Tabel-specifikke privilegier"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "NB: Navne på MySQL privilegier er på engelsk "
+msgstr "NB: Navne på MySQL privilegier er på engelsk"
#: server_privileges.php:711
msgid "Administration"
@@ -10123,7 +10125,7 @@ msgstr "Rådgiver"
#: server_status.php:802 server_status.php:824
msgid "Refresh rate: "
-msgstr "Opdateringsrate:"
+msgstr "Opdateringsrate: "
#: server_status.php:837 server_variables.php:119
msgid "Filters"
@@ -10200,7 +10202,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Forespørgsler siden startup: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Forespørgsler"
@@ -11101,7 +11103,7 @@ msgstr ""
"Aktivering af general_log kan forøge server load med 5-15%. Vær også "
"opmærksom på, at statistikgenerering fra logs er en krævende opgave, så det "
"tilrådes at vælge kun en lille tidsinterval og at deaktivere general_log og "
-"tømme dens tabel, når der ikke er behov for den længere. "
+"tømme dens tabel, når der ikke er behov for den længere."
#: server_status.php:1673
msgid "Preset chart"
@@ -11456,13 +11458,13 @@ msgstr "Ignorer fejl"
msgid "Show form"
msgstr "Vis formular"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Hverken URL wrapper eller CURL er til rådighed. Versionscheck er ikke mulig."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11470,15 +11472,15 @@ msgstr ""
"Læsning af version fejlede. Måske er du offline eller upgradeserveren svarer "
"ikke."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Fik en ugyldig versionsstreng fra server"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Versionsstrengen kan ikke parses"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11487,11 +11489,11 @@ msgstr ""
"Du bruger Git version, kør [kbd]git pull[/kbd] :-)[br]Sidste stabile version "
"er %s, released %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Ingen nyere stabil version er tilgængelig"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11505,7 +11507,7 @@ msgstr ""
"pålidelig, hvis din IP-adresse hører til en udbyder med mange tusinde "
"brugere."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11515,7 +11517,7 @@ msgstr ""
"så en nøgle blev automatisk genereret for dig. Den bruges til at kryptere "
"cookies; du behøver ikke huske den."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11524,7 +11526,7 @@ msgstr ""
"%sBzip2 komprimering og dekomprimering%s kræver funktioner (%s) som ikke er "
"tilgængelige på dette system."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11532,13 +11534,13 @@ msgstr ""
"Denne værdi bør dobbelcheckes for at sikre, at denne mappe er hverken "
"tilgængelig for alle eller læsbar/skrivbar af andre brugere på din server."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Denne %soption%s bør være aktiveret, hvis din webserver understøtter det."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11547,7 +11549,7 @@ msgstr ""
"%sGZip komprimering og dekomprimering%s kræver funktioner (%s) som ikke er "
"tilgængelige på dette system."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11558,7 +11560,7 @@ msgstr ""
"afslutning af session hvis %ssession.gc_maxlifetime%s er mindre end dens "
"værdi (aktuelt %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11568,7 +11570,7 @@ msgstr ""
"Værdier større end 1800 kan udgøre en sikkerhedsrisiko som fx overtagelse af "
"identitet."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11578,7 +11580,7 @@ msgstr ""
"0, så skal %sLogin cookie gyldighed%s være en værdi mindre end eller lig med "
"den."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11591,7 +11593,7 @@ msgstr ""
"baseret beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en "
"udbyder med mange tusinde brugere."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11606,7 +11608,7 @@ msgstr ""
"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt "
"%sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11615,7 +11617,7 @@ msgstr ""
"%sZip komprimering%s kræver funktioner (%s) som ikke er tilgængelige på "
"dette system."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11624,25 +11626,25 @@ msgstr ""
"%sZip dekomprimering%s kræver funktioner (%s) som ikke er tilgængelige på "
"dette system."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it."
msgid "You should use SSL connections if your database server supports it."
msgstr "Du bør bruge en SSL-forbindelse, hvis din webserver understøtter det. "
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Du bør bruge mysqli af ydelsesgrunde."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Du tillader forbindelse til serveren uden adgangskode"
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Nøglen er for kort, den bør have mindst 8 tegn."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn."
@@ -11650,8 +11652,8 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn."
msgid "Wrong data"
msgstr "Forkerte data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Bladre i fremmedværdier"
@@ -11683,21 +11685,29 @@ msgstr "Viser SQL-forespørgsel"
msgid "Validated SQL"
msgstr "Valideret SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-resultat"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Genereret af"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene på tabel `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Mærke"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabel %1$s er blevet ændret"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11705,7 +11715,7 @@ msgstr "De valgte brugere er blevet korrekt slettet."
#: tbl_change.php:745
msgid "Because of its length, this column might not be editable"
-msgstr "På grund af feltets længde, kan det muligvis ikke ændres "
+msgstr "På grund af feltets længde, kan det muligvis ikke ændres"
#: tbl_change.php:860
msgid "Binary - do not edit"
@@ -11827,7 +11837,7 @@ msgstr "Y-værdier"
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabel %1$s er blevet oprettet."
@@ -12029,45 +12039,45 @@ msgstr "Fjern partitionering"
msgid "Check referential integrity:"
msgstr "Check reference-integriteten:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Vis tabeller"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Pladsforbrug"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Benyttelse"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Rækkestatistik"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statisk"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamisk"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Rækkelængde"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Rækkestørrelse "
+msgstr "Rækkestørrelse"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Næste autoindeks"
@@ -12365,29 +12375,29 @@ msgstr "Spor disse datamanipulations-forespørgsler:"
msgid "Create version"
msgstr "Opret version"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Kør en \"forespørgsel ved eksempel\" (jokertegn: \"%\") for to forskellige "
"kolonner"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Ekstra søgekriterium"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Brug denne kolonne til at navngive hvert punkt"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Maksimalt antal plottede rækker"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Bladr gennem/rediger punkterne"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Hvordan man bruger"
@@ -12782,7 +12792,7 @@ msgid ""
"%%. It should be above 80%%"
msgstr ""
"Det aktuelle forhold mellem ledig og total forespørgselsmellemlager er %s%%. "
-"Det bør være over 80%% "
+"Det bør være over 80%%"
#: libraries/advisory_rules.txt:174
msgid "Query cache fragmentation"
@@ -13335,8 +13345,7 @@ msgstr "Frekvensen af filåbninger er høj."
#: libraries/advisory_rules.txt:339
#, php-format
msgid "Opened files rate: %s, this value should be less than 5 per hour"
-msgstr ""
-"Frekvens af filåbninger: %s. Denne værdi bør være mindre end 5 pr time "
+msgstr "Frekvens af filåbninger: %s. Denne værdi bør være mindre end 5 pr time"
#: libraries/advisory_rules.txt:341
#, php-format
diff --git a/po/de.po b/po/de.po
index 9a7f0a8323..0ee797ea7f 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-04-18 18:32+0200\n"
"Last-Translator: Jan Dittberner \n"
"Language-Team: none\n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Alles anzeigen"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Seite:"
@@ -39,30 +39,30 @@ msgstr ""
"Zugriff aufgrund Ihrer Sicherheitseinstellungen."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Suche"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Suche"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Datenbankkommentar: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tabellen-Kommentar"
@@ -124,14 +124,14 @@ msgstr "Tabellen-Kommentar"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Spalte"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Spalte"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -156,9 +156,9 @@ msgstr "Typ"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -168,7 +168,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Standard"
@@ -177,18 +177,18 @@ msgstr "Standard"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Verweise"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Kommentare"
@@ -199,11 +199,11 @@ msgstr "Kommentare"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Nein"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Ja"
msgid "View dump (schema) of database"
msgstr "Dump (Schema) der Datenbank anzeigen"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Es wurden keine Tabellen in der Datenbank gefunden."
@@ -322,8 +322,8 @@ msgstr "Zu kopierter Datenbank wechseln"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Beziehungsschema bearbeiten oder exportieren"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Beziehungsschema bearbeiten oder exportieren"
msgid "Table"
msgstr "Tabelle"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Datensätze"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Größe"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "in Benutzung"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Erzeugt am"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Aktualisiert am"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Letzter Check am"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -481,13 +480,13 @@ msgstr "Verwendete Tabellen"
msgid "SQL query on database %s :"
msgstr "SQL-Befehl in der Datenbank %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "SQL-Befehl ausführen"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Zugriff verweigert"
@@ -521,8 +520,8 @@ msgstr[0] "%1$s Treffer in der Tabelle %2$s "
msgstr[1] "%1$s Treffer in der Tabelle %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Anzeigen"
@@ -598,11 +597,11 @@ msgstr "Die Ansicht %s wurde gelöscht"
msgid "Table %s has been dropped"
msgstr "Die Tabelle %s wurde gelöscht"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Tracking ist aktiviert."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Tracking ist nicht aktiviert."
@@ -616,7 +615,7 @@ msgstr ""
"die %sDokumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Ansicht"
@@ -661,7 +660,7 @@ msgstr "Tabellen mit Überhang auswählen"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -670,17 +669,18 @@ msgid "Export"
msgstr "Exportieren"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Druckansicht"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Leeren"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -723,15 +723,14 @@ msgid "Tracked tables"
msgstr "Verfolgte Tabellen"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Datenbank"
@@ -749,7 +748,7 @@ msgstr "Aktualisiert"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -946,13 +945,13 @@ msgstr "Bookmark wird angezeigt"
msgid "The bookmark has been deleted."
msgstr "SQL-Abfrage wurde gelöscht."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Die Datei konnte nicht gelesen werden"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -986,7 +985,7 @@ msgstr ""
"Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre "
"phpMyAdmin-Installation!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s wurde gespeichert"
@@ -1014,8 +1013,8 @@ msgstr ""
"dass phpMyAdmin nicht in der Lage sein wird, den Import zu beenden, sofern "
"nicht die Ausführungszeitbeschränkungen von php gelockert werden."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1124,9 +1123,9 @@ msgid "Close"
msgstr "Schliessen"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Bearbeiten"
@@ -1150,7 +1149,7 @@ msgstr "Statische Daten"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Insgesamt"
@@ -1161,12 +1160,12 @@ msgid "Other"
msgstr "Weitere"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1250,13 +1249,13 @@ msgid "System swap"
msgstr "Auslagerungsspeicher"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1314,27 +1313,27 @@ msgid "Connections"
msgstr "Verbindungen"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1374,9 +1373,9 @@ msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "keine"
@@ -1568,7 +1567,7 @@ msgstr "Ausgabe erklären"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Zeit"
@@ -1888,7 +1887,7 @@ msgstr "%d ist keine gültige Zeilennummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1902,7 +1901,7 @@ msgstr "Suchkriterien ausblenden"
msgid "Show search criteria"
msgstr "Suchkriterien anzeigen"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Suche"
@@ -2084,7 +2083,7 @@ msgstr "Passwort ändern"
msgid "More"
msgstr "Mehr"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2171,63 +2170,63 @@ msgid "December"
msgstr "Dezember"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mrz"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dez"
@@ -2265,32 +2264,32 @@ msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sa"
@@ -2435,11 +2434,11 @@ msgstr ""
"Falsche Zugriffsrechte auf die Konfigurationsdatei. Schreibzugriff sollte "
"nicht für alle möglich sein!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Schriftgröße"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Zu viele Fehlermeldungen, einige werden nicht angezeigt."
@@ -2447,13 +2446,13 @@ msgstr "Zu viele Fehlermeldungen, einige werden nicht angezeigt."
msgid "File was not an uploaded file."
msgstr "Bei der Datei handelt es sich um keine hochgeladene Datei."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Die hochgeladene Datei ist größer als der in der php.ini in "
"upload_max_filesize angegebene Wert."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2461,27 +2460,27 @@ msgstr ""
"Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML "
"Formulars angegebene Wert."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Die Datei wurde nur teilweise übertragen."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Datei konnte gespeichert werden."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Hochladen der Datei wurde durch die Erweiterung gestoppt."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Unbekannter Fehler beim hochladen der Datei."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2489,11 +2488,11 @@ msgstr ""
"Fehler beim Verschieben der hochgeladenen Datei, siehe [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Fehler beim Verschieben der hochgeladenen Datei."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Die hochgeladene (verschobene) Datei kann nicht gelesen werden."
@@ -2507,7 +2506,7 @@ msgstr "Kein Index definiert!"
msgid "Indexes"
msgstr "Indizes"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2545,46 +2544,46 @@ msgstr ""
"Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte "
"möglicherweise entfernt werden."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Datenbanken"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Einfügen"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operationen"
@@ -2663,27 +2662,27 @@ msgstr "Erweiterungen"
msgid "Engines"
msgstr "Formate"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fehler"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d Datensatz betroffen."
msgstr[1] "%1$d Datensätze betroffen."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d Datensatz gelöscht."
msgstr[1] "%1$d Datensätze gelöscht."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2726,46 +2725,46 @@ msgstr "%s wurde auf diesem MySQL-Server deaktiviert."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Dieser MySQL-Server unterstützt %s nicht."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "Unbekannter Tabellenstatus: "
# source != search / Source != Suche
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Quell-Datenbank"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Oberflächendesign %s nicht gefunden!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Ungültige Datenbank"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Ungültiger Tabellenname"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabelle %1$s wurde in %2$s umbenannt."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Konnte die UI Einstellungen der Tabelle nicht speichern"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2774,7 +2773,7 @@ msgstr ""
"Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2785,16 +2784,16 @@ msgstr ""
"Änderungen werden nicht dauerhaft sein wenn Sie diese Seite aktualisieren. "
"Bitte überprüfen Sie, ob die Struktur der Tabelle geändert wurde."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Keinen gültigen Pfad für Grafiken des Oberflächendesigns %s gefunden!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Keine Vorschau verfügbar."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "auswählen"
@@ -2846,7 +2845,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2887,13 +2886,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "authored on %s by %s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "geschrieben am %s von %s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2904,7 +2903,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2922,7 +2921,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2935,7 +2934,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3034,77 +3033,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Neuen Index anlegen"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "LineString"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Räumlich"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3181,14 +3180,14 @@ msgstr "Server auswählen"
msgid "Cookies must be enabled past this point."
msgstr "Ab diesem Punkt müssen Cookies aktiviert sein."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Login ohne Passwort ist verboten (siehe AllowNoPassword) in der Konfiguration"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3196,8 +3195,8 @@ msgstr ""
"Da Sie seit mindestens %s Sekunden inaktiv waren, wurden Sie automatisch "
"abgemeldet. Bitte melden Sie sich erneut an"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Die Anmeldung am MySQL-Server ist fehlgeschlagen"
@@ -3241,18 +3240,18 @@ msgstr "Tabellen"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Daten"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Überhang"
@@ -3361,8 +3360,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "de"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-Befehl"
@@ -3372,145 +3371,145 @@ msgstr "SQL-Befehl"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL meldet: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Verbindungsaufbau zu SQL-Validator schlug fehl!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL erklären"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL-Erklärung umgehen"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "ohne PHP-Code"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP-Code erzeugen"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Aktualisieren"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL-Validierung umgehen"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL validieren"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Inline-Bearbeiten dieses SQL-Befehls"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Messen"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "So"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y um %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Fehlende(r) Parameter:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Anfang"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Vorherige"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Nächste"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Ende"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Zur Datenbank "%s" springen."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Zum Umschalten anklicken"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Durchsuchen Sie ihren Computer:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Es sind keine Dateien zum Upload vorhanden"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Ausführen"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Drucken"
@@ -3594,68 +3593,68 @@ msgstr "Beide der Obigen"
msgid "neither of the above"
msgstr "Keines der Obigen"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Keine positive Nummer"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Keine nicht-negative Nummer"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Keine gültige Portnummer"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Ungültiger Wert"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Wert muss gleich oder kleiner als %s sein"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Fehlende Daten für %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "nicht verfügbar"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" benötigt %s Erweiterung"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "Import wird nicht ausgeführt, fehlende Funktion (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "Export wird nicht ausgeführt, fehlende Funktion (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL-Validator ist deaktiviert"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP Erweiterung wurde nicht gefunden"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "Maximum %s"
@@ -3674,7 +3673,7 @@ msgid "Set value: %s"
msgstr "Setze Wert: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Voreingestellten Wert wiederherstellen"
@@ -3979,7 +3978,7 @@ msgid "Character set of the file"
msgstr "Zeichensatz der Datei"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4078,7 +4077,7 @@ msgstr "Kennzeichen"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-Typ"
@@ -4203,8 +4202,8 @@ msgstr "Standard-Einstellungen anpassen"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4637,15 +4636,21 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minimale Anzahl der in einer Tabellenliste anzuzeigenden Tabellen"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Minimale Anzahl der in einer Tabellenliste anzuzeigenden Tabellen"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
"Zeichenkette, die Datenbanken in unterschiedliche Baum-Abschnitte unterteilt"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Trennzeichen für Datenbank-Baum"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4653,40 +4658,40 @@ msgstr ""
"Nur für die Light-Version: Datenbanken als Baum anzeigen (wie vom unten "
"definierten Trennzeichen bestimmt)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Datenbanken als Baum anzeigen"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Ausschalten, wenn Sie alle Datenbanken auf einmal sehen möchten"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Light-Version benutzen"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maximale Tiefe des Tabellen-Baumes"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
"Zeichenkette, die Tabellen in unterschiedliche Baum-Abschnitte unterteilt"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Trennzeichen für Tabellen-Baum"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL auf die das Logo im Navigations-Frame zeigt"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL für Logo-Link"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4694,40 +4699,40 @@ msgstr ""
"Öffne Links im aktuellen Fenster([kbd]main[/kbd]) oder in einem neuen "
"Fenster ([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Ziel für Logo-Link"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Server unter Mauscursor hervorheben"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Hervorhebung ermöglichen"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Maximale Anzahl der kürzlichen verwendeten Tabellen, auf 0 setzen zum "
"deaktivieren"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Kürzlich verwendete Tabellen"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Maximal dargestellte Zeichenzahl bei Anzeige einer nicht-numerischen Spalte "
"in einer SQL-Abfrage"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Zeichen pro Spalte begrenzen"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4737,11 +4742,11 @@ msgstr ""
"FALSE, wird logout nur auf dem aktuellen Server vollzogen. FALSE macht es "
"leicht, logout auf andern Servern zu vergessen."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "All Cookies beim Logout löschen"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4749,11 +4754,11 @@ msgstr ""
"Legt fest, ob das vorherige login bei Cookie Authentifizierung "
"wiederhergestellt werden soll"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Benutzername wiederherstellen"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4765,50 +4770,50 @@ msgstr ""
"Sitzung gespeichert wird und beim Schließen des Browserfensters sofort "
"gelöscht wird. Dies wird für nicht vertrauenswürdige Umgebungen empfohlen."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Login Cookie Speicherung"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Legt fest, wie lange (in Sekunden) ein Login Cookie gültig ist"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Login Cookie Gültigkeit"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Verdoppele Größe für LONGTEXT Spalten"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Größere Textfelder für LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Maximal dargestellte Zeichenzahl bei Anzeige einer SQL-Abfrage"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Zeichen Maximum beim SQL Befehl anzeigen"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Benutzer dürfen keinen größeren Wert setzen"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Maximale Anzahl von Datenbanken, die im linken Frame und in der Datenbank-"
"Liste angezeigt werden"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Datenbanken Maximum"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4818,19 +4823,19 @@ msgstr ""
"Datensätze vorhanden sind, werden "Previous" and "Next" "
"Links angezeigt."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maximale Anzahl der angezeigten Datensätze"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Maximale Anzahl der in einer Tabellenliste angezeigten Tabellen"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Tabellen Maximum"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4838,11 +4843,11 @@ msgstr ""
"Standardmeldung unterdrücken wenn mcrypt für die Cookie Authentifizierung "
"nicht vorhanden ist"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt Warnhinweis"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4850,44 +4855,44 @@ msgstr ""
"Anzahl der Bytes, welche ein Script zur Ausführung benötigen darf, z.B. [kbd]"
"32M[/kbd] ([kbd]0[/kbd] für unbegrenzt)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Speicher Limit"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Dies sind Bearbeitungs-, Kopier- und Löschlinks"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Wo die Datensatz-Links angezeigt werden sollen"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
"Natürliche Sortierreihenfolge für Tabellen- und Datenbanknamen verwenden"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Natürliche Reihenfolge"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Verwende nur Icons, nur Text oder beides"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Navigationsleiste mit Icons"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "Verwende Gzip output buffering, um HTTP transfers zu beschleunigen"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip Ausgabepufferung"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4895,19 +4900,19 @@ msgstr ""
"[kbd]SMART[/kbd] - d.h. absteigende Sortierung für die Feldtypen TIME, DATE, "
"DATETIME und TIMESTAMP, sonst aufsteigende Sortierung"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Voreingestellte Sortierung"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Verwende andauernde Verbindungen zu MySQL Datenbanken"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Persistente Verbindung"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4916,23 +4921,23 @@ msgstr ""
"Standardhinweis der Datenbankstruktur-Detailansicht unterdrücken, wenn eine "
"erforderliche Tabelle der phpMyAdmin Konfiguration nicht gefunden werden kann"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Tabellenbearbeitung mittels Icons"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Änderungen an BLOB und BINARY Feldern verbieten"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "BINARY-Felder schützen"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4943,113 +4948,113 @@ msgstr ""
"Routinen zur Darstellung des Abfrageverlaufs eingesetzt (sie gehen beim "
"Schließen des Fensters verloren)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Anfragelog speichern"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Anzahl der Abfragen in der Historie"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Länge des Abfrageverlaufs"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Angezeigter Tab beim Öffnen eines neuen Abfragefensters"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Voreingestellter Tab für Abfragefenster"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Höhe des Abfragefensters (in Pixeln)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Höhe des Abfragefensters"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Breite des Abfragefensters (in Pixeln)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Breite des Abfragefensters"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Wahl der Funktionen zur Zeichensatz-Konvertierung"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Umwandlungs Engine"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
"Während des Durchsehens der Tabellen wird die Sortierung zwischengespeichert"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Tabellensortierung zwischenspeichern"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Kopfzeilen alle n Zellen anzeigen, [kbd]0[/kbd] deaktiviert diese Option"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Kopfzeilen wiederholen"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Speichere alle bearbeiteten Zellen auf einmal"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Verzeichnis auf dem Server für Exports"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Speicher Verzeichnis"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Leer lassen, wenn unbenutzt"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Host-Autorisierungsreihenfolge"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Leer lassen, um die Voreinstellungen zu verwenden"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Host-Autorisierungsregeln"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Erlaube Logins ohne Passwort"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Erlaube root Login"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP Basic Auth Bereich Name der bei HTTP Auth angezeigt wird"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Bereich"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5059,19 +5064,19 @@ msgstr ""
"Authentifizierung[/a] (liegt nicht im Webhauptverzeichnis (document root); "
"empfohlen: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey Konfigurationsdatei"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Zu benutzende Authentifikations-Methode"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Authentifikationstyp"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5079,11 +5084,11 @@ msgstr ""
"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/bookmark]Lesezeichen"
"[/a] Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Lesezeichen Tabelle"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5091,32 +5096,32 @@ msgstr ""
"Leer lassen für keine Spalten Kommentare/mime types, Vorschlag: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Spalten Informationen Tabelle"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Komprimiere die Verbindung zum MySQL-Server"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Verbindung komprimieren"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Art der Verbindung zum Server, im Zweifelsfalle auf [kbd]tcp[/kbd] belassen"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Art der Verbindung"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "pmadb Benutzer Passwort"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5124,11 +5129,11 @@ msgstr ""
"Ein besonderer MySQL Nutzer mit eingeschränkten Rechten, nähere "
"Informationen auf [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "pmadb Benutzer"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5136,19 +5141,19 @@ msgstr ""
"Eine alternative Host für den Konfiguration Speicher; leer lassen, um die "
"bereits definierten Host zu verwenden"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "pmadb Host"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Zähle Tabellen bei Anzeige der Datenbank-Liste"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Zähle Tabellen"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5156,11 +5161,11 @@ msgstr ""
"Leer lassen für keine Designer Unterstützung, Vorschlag: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Designer Coords Table"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5168,29 +5173,29 @@ msgstr ""
"Mehr Informationen auf [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Benutzung von INFORMATION_SCHEMA deaktivieren"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Die zu verwendente PHP Erweiterung; sie sollten mysqli verwenden wenn es "
"verfügbar ist"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP Erweiterung"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Verberge Datenbanken, die auf regular expressions (PCRE) passen"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Datenbanken verstecken"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5198,23 +5203,23 @@ msgstr ""
"Leer lassen für keine SQL Abfragehistorien-Unterstützung, Vorschlag: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL Abfragehistorien Tabelle"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Rechnername auf dem der MySQL Server läuft"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Hostname"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Abmelde URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5222,19 +5227,19 @@ msgstr ""
"Begrenzt die Anzahl der Tabelle Einstellungen die in der Datenbank "
"gespeichert werden, die ältesten Einträge werden automatisch gelöscht"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Maximale Anzahl der zu speichernden Tabelleneinstellungen"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Versuche ohne Passwort zu verbinden"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Ohne Passwort verbinden"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5248,30 +5253,30 @@ msgstr ""
"werden; geben Sie ihre Namen sortiert ein und nutzen Sie am Ende [kbd]*[/"
"kbd], um die übrigen in alphabetischer Reihenfolge anzuzeigen."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Nur aufgelistete Datenbanken zeigen"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Leer lassen, wenn config auth nicht verwendet wird"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Passwort für config Authentifikation"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Leer lassen für keine PDF Schema Unterstützung, Vorschlag: [kbd]pma_pdf_pages"
"[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF Pages Table"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5281,19 +5286,19 @@ msgstr ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] für komplette Information. Leer lassen "
"für keine Unterstützung. Vorschlag: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Datenbankname"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "Port, auf dem der MySQL-Server horcht, leer lassen für Voreinstellung"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Port"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5301,11 +5306,11 @@ msgstr ""
"Leer lassen, um die kürzlich verwendeten Tabellen nicht in der Datenbank "
"\"dauerhaft\" zu speichern, Vorschlag: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Kürzich verwendete Tabellen"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5313,19 +5318,19 @@ msgstr ""
"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"link[/a] Unterstützung, Vorschlag: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relation Tabelle"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL Komando, um verfügbare Datenbanken abzurufen"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES Befehl"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5333,43 +5338,43 @@ msgstr ""
"Siehe [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"Authentifizierungsarten[/a] für ein Beispiel"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Anmelde Session-Name"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Anmelde URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Socket, auf dem der MySQL-Server horcht, leer lassen für Voreinstellung"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Server Socket"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Ermögliche SSL für Verbindung zum MySQL-Server"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Benutze SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Leer lassen für keine PDF Schema Unterstützung, Vorschlag: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF Schema: Tabellen Koordinatien"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5377,11 +5382,11 @@ msgstr ""
"Tabelle zur Beschreibung der Anzeigespalten, leer lassen für keine "
"Unterstützung; Vorschlag: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Tabelle für Anzeigespalten"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5389,11 +5394,11 @@ msgstr ""
"Leer lassen, um die Oberflächeneinstellungen nicht \"dauerhaft\" in der "
"Datenbank zu speichern, Vorschlag: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Tabelle für Oberflächeneinstellungen"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5401,11 +5406,11 @@ msgstr ""
"DROP DATABASE IF EXISTS statement beim Erstellen einer neuen Datenbank als "
"erste Zeile loggen."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE hinzufügen"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5413,11 +5418,11 @@ msgstr ""
"DROP TABLE IF EXISTS statement beim Erstellen einer neuen Ansicht als erste "
"Zeile loggen."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "DROP TABLE hinzufügen"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5425,21 +5430,21 @@ msgstr ""
"DROP VIEW IF EXISTS statement beim Erstellen einer neuen Ansicht als erste "
"Zeile loggen."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "DROP VIEW hinzufügen"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Legt die Liste der Statements fest, welche die automatische "
"Versionserstellung für neue Versionen verwenden."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Zu verfolgende Statements"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5447,11 +5452,11 @@ msgstr ""
"Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: [kbd]"
"pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabelle mit Verfolgung der SQL-Abfragen"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5459,11 +5464,11 @@ msgstr ""
"Automatische Versionserstellung für Tabellen und Ansichten durch den "
"Verlaufs-Mechanismus."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Versionen automatisch erzeugen"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5471,15 +5476,15 @@ msgstr ""
"Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu "
"speichern, Vorschlag: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabelle für Benutzereinstellungen"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Benutzername für config Authentifikation"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5487,21 +5492,21 @@ msgstr ""
"Benutzerfreundlicher Name des Servers. Leer lassen um den tatsächlichen "
"Rechnernamen anzuzeigen."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Serverbezeichnung"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Ob dem Benutzer eine Schaltfläche „Alle (Datensätze) anzeigen” "
"angezeigt werden soll"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Erlaube es alle Datensätze anzuzeigen"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5512,46 +5517,46 @@ msgstr ""
"dieses beschränkt nicht die Möglichkeit der direkten Ausführung des selben "
"Befehls"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Zeige Formular zur Passwort-Änderung"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Zeige Formular zur Datenbank-Erstellung"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Eine Spalte mit dem Erstellungs-Zeitstempel für alle Tabellen ein-/ausblenden"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Erstellungs-Zeitstempel anzeigen"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Eine Zeile mit dem Zeitstempel des letzten Updates für alle Tabellen ein-/"
"ausblenden"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Zeitstempel des letzten Updates anzeigen"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Eine Zeile mit dem Zeitstempel der letzten Überprüfung für alle Tabellen "
"ein-/ausblenden"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Zeitstempel der letzten Überprüfung einblenden"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5559,11 +5564,11 @@ msgstr ""
"Legt fest, ob die Typen-Anzeige-Richtungs-Option gezeigt wird, beim "
"durchsuchen einer Tabelle"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Zeige die Anzeige-Richtung"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5571,27 +5576,27 @@ msgstr ""
"Definiert, ob Typen-Felder anfänglich im Bearbeiten/Einfügen-Modus angezeigt "
"werden"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Feld-Typen anzeigen"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Im Bearbeiten/Einfügen Modus Funktionsfelder anzeigen"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Funktionsfelder anzeigen"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Hinweise anzeigen"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Hinweis anzeigen"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5599,44 +5604,44 @@ msgstr ""
"Zeige Link zu [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"Ausgabe"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Zeige phpinfo() Link"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Zeige detailierte MySQL-Server Informationen"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Legt fest, ob von phpMyAdmin generierte SQL-Abfragen angezeigt werden sollten"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Zeige SQL Anfragen"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Definiert, ob das Abfragefeld nach dem Absenden geöffnet bleiben sollte"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Abfragefeld weiterhin anzeigen"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Erlaube die Anzeige von Datenbank- und Tabellen-Statistiken, ( z.B. "
"Platzbedarf)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Zeige Statistik"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5644,11 +5649,11 @@ msgstr ""
"Wenn Tooltips eingeschaltet sind und Datenbank-Kommentare vorhanden sind, "
"vertausch dies den Kommentar und den Namen"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Zeige Datenbank-Kommentar anstelle des Namens"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5660,30 +5665,30 @@ msgstr ""
"['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. Nur "
"der Ordner erhält den Alias, der Tabellename bleibt unverändert"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Zeige Tabellen-Kommentar anstelle des Namens"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Tabellen-Kommentar als Tooltip anzeigen"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Markiere benutzte Tabellen und ermögliche die Anzeige von Tabellen mit "
"gesperrten Tabellen"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Überspringe gesperrte Tabellen"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Erfordert das der SQL-Validator aktiviert ist"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5693,7 +5698,7 @@ msgstr "Erfordert das der SQL-Validator aktiviert ist"
msgid "Password"
msgstr "Passwort"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5701,11 +5706,11 @@ msgstr ""
"[strong]Warnung:[/strong] erfordert das die PHP-Erweiterung SOAP oder PEAR "
"SOAP installiert ist"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "SQL-Validator aktivieren"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5713,20 +5718,20 @@ msgstr ""
"Falls Sie einen benutzerdefinierten Benutzernamen haben, hier angeben "
"(Standard ist [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Benutzername"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Warnhinweis auf der Hauptseite, wenn Suhosin erkannt wird"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin Warnhinweis"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5734,11 +5739,11 @@ msgstr ""
"Textfeldgröße (in Spalten) im Bearbeitungsmodus. Dieser Wert wird vergrößert "
"für Textfelder bei SQL-Abfragen (*2) und Abfragefenster (*1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Textfeldspalten"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5746,31 +5751,31 @@ msgstr ""
"Textfeldgröße (in Zeilen) im Bearbeitungsmodus. Dieser Wert wird vergrößert "
"für Textfelder bei SQL-Abfragen (*2) und Abfragefenster (*1,25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Textfeldzeilen"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Titelleiste des Browserfensters wenn eine Datenbank ausgewählt ist"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Titelleiste des Browserfensters wenn nichts ausgewählt ist"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Standardtitel"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titelleiste des Browserfensters wenn ein Server ausgewählt ist"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Titelleiste des Browserfensters wenn eine Tabelle ausgewählt ist"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5782,27 +5787,27 @@ msgstr ""
"For) Header, der von dem proxy 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR"
"[/kbd] kommt, vertrauen soll"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste der Vertrauenswürdigen Proxies für IP Filter"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Verzeichnis auf dem Server zum Upload von zu importierenden Dateien"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Upload Verzeichnis"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Erlaube Suche in der gesammten Datenbank"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Datenbank Suche"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5810,29 +5815,29 @@ msgstr ""
"Wenn deaktiviert, können Benutzer – unabhängig von der Checkbox rechts – "
"keine der untenstehenden Einstellungen ändern"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Aktiviere den Reiter "Entwickler" in den Einstellungen"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Auf neue Version prüfen"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Versionsüberprüfung"
# Maybe wikipedia links should point to $lang.wikipedia.org, eg
# http://de.wikipedia.org/wiki/ZIP-Dateiformat
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5840,7 +5845,7 @@ msgstr ""
"[a@http://de.wikipedia.org/wiki/ZIP-Dateiformat]ZIP[/a]-Kompression für "
"Import- und Exportoperationen aktivieren"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5861,83 +5866,83 @@ msgid "Signon authentication"
msgstr "Signon-Authentifizierung"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV mit LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Kalkulationstabelle"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Schnell"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Benutzerdefiniert"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Export-Optionen der Datenbank"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV-Daten für MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Konnte Drizzle-Verbindungsbibliothek nicht initialisieren"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Verbindungsaufbau zu Drizzle-Server schlug fehl"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Verbindungsaufbau zu MySQL-Server schlug fehl"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Leerer Benutzername, obwohl config-Authentisierung verwnedet wird"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Leerer Sessionname, obwohl signon-Authentisierung verwendet wird"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Leere signon-URL, obwohl signon-Authentisierung verwendet wird"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Kein phpMyAdmin Control-user angegeben, obwohl pmadb verwendet wird"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"Passwort des phpMyAdmin Control-users ist leer, obwohl pmadb verwendet wird"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Ungültige IP-Adresse: %s"
@@ -5957,7 +5962,7 @@ msgstr "Die Erweiterung %s fehlt. Bitte die PHP Konfiguration überprüfen."
msgid "possible deep recursion attack"
msgstr "möglicher Deep-Recursion-Angriff"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5965,17 +5970,17 @@ msgstr ""
"Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers "
"nicht korrekt konfiguriert)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Der Server antwortet nicht."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
"Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank "
"befindet."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Details..."
@@ -6041,7 +6046,7 @@ msgstr "Erzeuge Tabelle"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Name"
@@ -6201,27 +6206,27 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Zeichensatz Umwandlung:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, fuzzy, php-format
#| msgid "%s from %s branch"
msgid "%1$s from %2$s branch"
msgstr "%s aus dem Zweig %s"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "kein Zweig"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Git-Revision"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "authored on %s by %s"
msgid "committed on %1$s by %2$s"
msgstr "geschrieben am %s von %s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "authored on %s by %s"
msgid "authored on %1$s by %2$s"
@@ -6945,18 +6950,17 @@ msgid "Display MIME types"
msgstr "MIME-Typen anzeigen"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Erstellungszeit"
@@ -7182,15 +7186,7 @@ msgstr "Keine Daten für die GIS-Darstellung gefunden."
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS Überschreibversuch"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-Abfrageergebnis"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Erstellt von"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)."
@@ -7295,7 +7291,7 @@ msgstr "Ungültige Anzahl an Spalten im CSV-Import in Zeile %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Tabellenname"
@@ -7655,7 +7651,7 @@ msgstr "Erzeugen von PDFs"
msgid "Displaying Column Comments"
msgstr "Darstellung von Spaltenkommentaren"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Darstellungsumwandlung"
@@ -7763,10 +7759,10 @@ msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Wert"
@@ -7829,7 +7825,7 @@ msgstr "Passwort generieren"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7867,8 +7863,8 @@ msgid "Edit event"
msgstr "Event bearbeiten"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Fehler beim Bearbeiten der Anfrage"
@@ -7918,7 +7914,7 @@ msgstr "Nach Abschluss erhalten"
msgid "Definer"
msgstr "Ersteller"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein"
@@ -7977,7 +7973,7 @@ msgstr ""
"vermeiden."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Ungültiger Prozeduren-Typ: \"%s\""
@@ -8048,17 +8044,17 @@ msgstr "Sicherheits-Typ"
msgid "SQL data access"
msgstr "SQL-Datenzugriff"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Sie müssen einen Prozeduren-Namen angeben"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Ungültige Richtung \"%s\" für Parameter angegeben."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8066,21 +8062,21 @@ msgstr ""
"Sie müssen Länge/Werte Angaben für Prozeduren Parameter des Typs ENUM, SET, "
"VARCHAR und VARBINARY angeben."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Sie müssen die Definition der Prozedur angeben."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8089,22 +8085,22 @@ msgstr[0] ""
msgstr[1] ""
"%d Datensätze betroffen aufgrund des letzten Befehls innerhalb der Prozedur"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Ergebnisse der ausgeführten Prozedur %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Führe Prozedur aus"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Prozeduren-Parameter"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funktion"
@@ -8283,7 +8279,7 @@ msgstr "Inhalt"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attribute"
@@ -8382,12 +8378,12 @@ msgid "Toggle scratchboard"
msgstr "Klemmbrett anzeigen"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unbekannte Sprache: %1$s."
@@ -8434,7 +8430,7 @@ msgstr "SQL-Befehl(e) auf Server %s ausführen"
msgid "Run SQL query/queries on database %s"
msgstr "SQL-Befehl(e) in Datenbank %s ausführen"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Werte löschen"
@@ -8443,11 +8439,11 @@ msgstr "Werte löschen"
msgid "Columns"
msgstr "Spalten"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "SQL-Abfrage speichern"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
@@ -8550,12 +8546,12 @@ msgstr ""
"überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-"
"Erweiterungen installiert haben."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Rückverfolgung der Tabelle %s ist aktiviert."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8567,7 +8563,7 @@ msgstr ""
"einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein "
"Backslash vor das Zeichen. (z.B.: '\\\\xyz' oder 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8575,19 +8571,19 @@ msgstr ""
"Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder "
"Anführungszeichen an, und verwenden Sie dieses Format: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Index"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Spalte(n) entfernen"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8596,11 +8592,11 @@ msgstr ""
"Um eine Liste aller verfügbaren MIME-Typen-Umwandlungen und deren Optionen "
"zu sehen, klicken Sie bitte auf %sUmwandlungen%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Umwandlungsoptionen"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8612,72 +8608,72 @@ msgstr ""
"einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein "
"Backslash vor das Zeichen. (z.B.: '\\\\xyz' oder 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM oder SET Daten zu lang?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Mehr Platz zum Editieren"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Kein(e)"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Wie definiert:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primärschlüssel"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Volltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Nach %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "%s Spalte(n) einfügen"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Sie müssen mindestens eine Spalte hinzufügen."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Tabellenformat"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "PARTITION Definition"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Tabellensuche"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Bearbeiten/Einfügen"
@@ -8855,11 +8851,11 @@ msgstr ""
"Die Benutzereinstellungen werden nur für die aktuelle Session gespeichert. "
"Die permanente Speicherung erfordert %sphpMyAdmin Konfigurationsspeicher%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Fehler beim Speichern der Konfiguration"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8871,8 +8867,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Keine Dateien im ZIP-Archiv gefunden!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Fehler im ZIP-Archiv:"
@@ -9052,16 +9048,22 @@ msgstr ""
msgid "No databases"
msgstr "Keine Datenbanken"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Tabellen nach Namen filtern"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Tabellen nach Namen filtern"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Erzeuge Tabelle"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Bitte Datenbank auswählen"
@@ -10230,7 +10232,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Verbindungen seit Start: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Angaben"
@@ -11518,14 +11520,14 @@ msgstr "Fehler ignorieren"
msgid "Show form"
msgstr "Zeige Formular"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Weder URL Wrapper noch CURL sind verfügbar. Versionsüberprüfung ist nicht "
"möglich."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11533,15 +11535,15 @@ msgstr ""
"Lesen der Versioninformationen fehlgeschlagen. Vielleicht sind Sie offline "
"oder der Server antwortet nicht."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Ungültige Versionsinformation erhalten"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Versionsinformation nicht analysierbar"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11550,11 +11552,11 @@ msgstr ""
"Sie benutzen die Git-Version, führen Sie [kbd]git pull[/kbd] aus :-)[br]Die "
"neueste stabile Version ist %s, veröffentlicht am %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Keine neuere stabile Version verfügbar"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11570,7 +11572,7 @@ msgstr ""
"zu einem Internetdienstanbieter gehört, mit dem tausende Kunden, Sie "
"eingeschlossen, verbunden sind."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11581,7 +11583,7 @@ msgstr ""
"erzeugt. Er wird zum Verschlüsseln der Cookies verwendet und muss nicht "
"gemerkt werden."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11590,7 +11592,7 @@ msgstr ""
"%sBzip2-Komprimierung und Dekomprimierung%s benötigt Funktionen (%s), die "
"auf diesem System nicht verfügbar sind."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11599,14 +11601,14 @@ msgstr ""
"darf nicht von außen gelesen werden und andere Benutzer des Servers sollen "
"keine Schreibrechte haben."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Diese %sOption%s sollte aktiviert werden, falls Ihr Webserver sie "
"unterstützt."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11615,7 +11617,7 @@ msgstr ""
"%sGZip-Komprimierung und Dekomprimierung%s benötigt Funktionen (%s), die auf "
"diesem System nicht verfügbar sind."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11626,7 +11628,7 @@ msgstr ""
"von Sitzungen verursachen, falls %ssession.gc_maxlifetime%s niedriger ist "
"als dieser Wert (aktuell %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11636,7 +11638,7 @@ msgstr ""
"gesetzt sein. Werte größer als 1800 könnten ein Sicherheitsrisiko darstellen "
"z.B. durch Leute, die sich als Sie ausgeben."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11646,7 +11648,7 @@ msgstr ""
"ungleich 0 ist, muss die %sLogincookie-Gültigkeit%s auf den gleichen oder "
"einen niedrigeren Wert gesetzt sein."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11660,7 +11662,7 @@ msgstr ""
"wenn Ihre IP einem ISP gehört, mit dem tausende Benutzer, einschließlich "
"Ihnen, verbunden sind."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11675,7 +11677,7 @@ msgstr ""
"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den "
"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11684,7 +11686,7 @@ msgstr ""
"%sZip-Komprimierung%s benötigt Funktionen (%s), die auf diesem System nicht "
"zur Verfügung stehen."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11693,25 +11695,25 @@ msgstr ""
"%sZip-Dekomprimierung%s benötigt Funktionen (%s), die auf diesem System "
"nicht zur Verfügung stehen."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"Sie sollten SSL-Verbindungen benutzen, wenn Ihr Datenbankserver es "
"unterstützt."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Aus Performancegründen sollten Sie mysqli verwenden."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Sie erlauben Verbindungen mit dem Server ohne Passwort."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Schlüssel ist zu kurz, er muss mindestens 8 Zeichen lang sein."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Schlüssel sollte Buchstaben, Ziffern [em]und[/em] Sonderzeichen enthalten."
@@ -11720,8 +11722,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Fehlerhafte Daten"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Fremdschlüsselwerte ansehen"
@@ -11751,21 +11753,29 @@ msgstr "Ansicht als SQL Abfrage"
msgid "Validated SQL"
msgstr "Geprüftes SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-Abfrageergebnis"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Erstellt von"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Warnungen bei den Indizes der Tabelle `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Titel"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Die Tabelle %1$s wurde erfolgreich geändert"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11885,7 +11895,7 @@ msgstr "Y-Werte"
msgid "Table %s already exists!"
msgstr "Die Tabelle %s existiert bereits!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Die Tabelle %1$s wurde erzeugt."
@@ -12087,43 +12097,43 @@ msgstr "Entferne die Partitionierung"
msgid "Check referential integrity:"
msgstr "Prüfe referentielle Integrität:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Tabellen anzeigen"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Speicherplatzverbrauch"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Verbrauch"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Datensatz-Statistiken"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statisch"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamisch"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Zeilenlänge"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Zeilengröße"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Nächster Autoindex"
@@ -12416,29 +12426,29 @@ msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):"
msgid "Create version"
msgstr "Erzeuge Version"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\") für "
"zwei unterschiedliche Spalten"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Zusätzliche Suchkriterien"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Diese Spalte verwenden, um jeden Punkt zu benennen"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Maximale Anzahl der darzustellenden Datensätze"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Punkte anzeigen/bearbeiten"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Anleitung"
diff --git a/po/el.po b/po/el.po
index 5021bfdde7..aaff1a2ba7 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-03-22 09:27+0200\n"
"Last-Translator: Panagiotis Papazoglou \n"
"Language-Team: greek \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Εμφάνιση όλων"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Σελίδα:"
@@ -39,30 +39,30 @@ msgstr ""
"ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Αναζήτηση"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Αναζήτηση"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Εκτέλεση"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Σχόλιο βάσης: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Σχόλια πίνακα"
@@ -124,14 +124,14 @@ msgstr "Σχόλια πίνακα"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Στήλη"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Στήλη"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Τύπος"
@@ -156,9 +156,9 @@ msgstr "Τύπος"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Κενό"
@@ -168,7 +168,7 @@ msgstr "Κενό"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Προεπιλογή"
@@ -177,18 +177,18 @@ msgstr "Προεπιλογή"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Σύνδεση με"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Σχόλια"
@@ -199,11 +199,11 @@ msgstr "Σχόλια"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Όχι"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Ναι"
msgid "View dump (schema) of database"
msgstr "Εμφάνιση σκαριφήματος (σχήματος) της βάσης δεδομένων"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένων."
@@ -324,8 +324,8 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματ
msgid "Table"
msgstr "Πίνακας"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Εγγραφές"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Μέγεθος"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "σε χρήση"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Δημιουργία"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Τελευταία ενημέρωση"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Tελευταίος έλεγχος"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "Χρήση Πινάκων"
msgid "SQL query on database %s :"
msgstr "Εντολή SQL στη βάση δεδομένων %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Υποβολή ερωτήματος"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Άρνηση πρόσβασης"
@@ -523,8 +522,8 @@ msgstr[0] "%1$s απατέλεσμα στον πίνακα %2$s "
msgstr[1] "%1$s αποτελέσματα στον πίνακα %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Περιήγηση"
@@ -600,11 +599,11 @@ msgstr "Η προβολή %s διαγράφτηκε"
msgid "Table %s has been dropped"
msgstr "Ο πίνακας %s διεγράφη"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Η παρακολούθηση είναι ενεργοποιημένη."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη."
@@ -618,7 +617,7 @@ msgstr ""
"%sτεκμηρίωση%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Προβολή"
@@ -664,7 +663,7 @@ msgstr "Επιλογή πινάκων με περίσσεια"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -673,17 +672,18 @@ msgid "Export"
msgstr "Εξαγωγή"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Εμφάνιση για εκτύπωση"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Άδειασμα"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -726,15 +726,14 @@ msgid "Tracked tables"
msgstr "Παρακολουθούμενοι πίνακες"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Βάση"
@@ -752,7 +751,7 @@ msgstr "Ενημερώθηκε"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Κατάσταση"
@@ -943,13 +942,13 @@ msgstr "Εμφάνιση σελιδοδείκτη"
msgid "The bookmark has been deleted."
msgstr "Η ετικέτα διεγράφη."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -982,7 +981,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε"
@@ -1009,8 +1008,8 @@ msgstr ""
"σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός "
"και αν αυξήσετε τα χρονικά όρια της php."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1122,9 +1121,9 @@ msgid "Close"
msgstr "Κλείσιμο"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Επεξεργασία"
@@ -1148,7 +1147,7 @@ msgstr "Στατικά δεδομένα"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Σύνολο"
@@ -1159,12 +1158,12 @@ msgid "Other"
msgstr "Άλλα"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1247,13 +1246,13 @@ msgid "System swap"
msgstr "Αδράνεια συστήματος"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1311,27 +1310,27 @@ msgid "Connections"
msgstr "Συνδέσεις"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1371,9 +1370,9 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Καμία"
@@ -1566,7 +1565,7 @@ msgstr "Επεξήγηση προϊόντος"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Χρόνος"
@@ -1892,7 +1891,7 @@ msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γ
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1906,7 +1905,7 @@ msgstr "Απόκρυψη κριτηρίων αναζήτησης"
msgid "Show search criteria"
msgstr "Προβολή κριτηρίων αναζήτησης"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Εστιασμένη Αναζήτηση"
@@ -2087,7 +2086,7 @@ msgstr "Αλλαγή Κωδικού Πρόσβασης"
msgid "More"
msgstr "Περισσότερα"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2174,63 +2173,63 @@ msgid "December"
msgstr "Δεκεμβρίου"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Ιαν"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Φεβ"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Μαρ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Απρ"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Μάη"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Ιουν"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Ιουλ"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Αυγ"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Σεπ"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Οκτ"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Νοε"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Δεκ"
@@ -2268,32 +2267,32 @@ msgid "Sun"
msgstr "Κυρ"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Δευ"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Τρί"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Τετ"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Πέμ"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Παρ"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Σάβ"
@@ -2439,11 +2438,11 @@ msgstr ""
"Εσφαλμένα δικαιώματα στο αρχείο ρυθμίσεων, δεν πρέπει να είναι καθολικά "
"εγγράψιμο!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Μέγεθος γραμματοσειράς"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Πολλά μηνύματα σφάλματος, ορισμένα δεν εμφανίζονται."
@@ -2451,13 +2450,13 @@ msgstr "Πολλά μηνύματα σφάλματος, ορισμένα δεν
msgid "File was not an uploaded file."
msgstr "Το αρχείο δεν ήταν αρχείο αποστολής."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php."
"ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2465,27 +2464,27 @@ msgstr ""
"Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε "
"στη φόρμα HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Χάθηκε ένας προσωρινός φάκελος."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2493,11 +2492,11 @@ msgstr ""
"Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [a@./Documentation."
"html#faq1_11@Documentation]ΣΑΕ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Σφάλμα κατά τη μετακίνηση αρχείου αποστολής."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Αδύνατη η ανάγνωση (μετακίνηση) του αρχείου αποστολής."
@@ -2511,7 +2510,7 @@ msgstr "Δεν ορίστηκε ευρετήριο!"
msgid "Indexes"
msgstr "Ευρετήρια"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2549,46 +2548,46 @@ msgstr ""
"Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να "
"απομακρυνθεί."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Βάσεις δεδομένων"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Διακομιστής"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Δομή"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "Κώδικας SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Προσθήκη"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Λειτουργίες"
@@ -2667,27 +2666,27 @@ msgstr "Πρόσθετα"
msgid "Engines"
msgstr "Μηχανές"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Λάθος"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "Επηρεάστηκε %1$d γραμμή."
msgstr[1] "Επηρεάστηκαν %1$d γραμμές."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "Διαγράφτηκε %1$d γραμμή."
msgstr[1] "Διαγράφτηκαν %1$d γραμμές."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2732,45 +2731,45 @@ msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το δια
msgid "This MySQL server does not support the %s storage engine."
msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "άγνωστη κατάσταση πίνακα: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Βάση δεδομένων προέλευσης"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Το θέμα %s δεν βρέθηκε!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Μη έγκυρη βάση δεδομένων"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Μη έγκυρο όνομα πίνακα"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Ο πίνακας %1$s μετονομάσθηκε σε %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Αδύνατη η αποθήκευση του πίανακα ρυθμίσεων UI"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2779,7 +2778,7 @@ msgstr ""
"Αδύνατη η εκκαθάριση του πίνακα προτιμήσεων του περιβάλλοντος εργασίας "
"(δείτε το $cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2790,16 +2789,16 @@ msgstr ""
"παραμείνουν μετά την ανανέωση της σελίδας. Ελέξτε αν η δομή πίνακα έχει "
"αλλαχτεί."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Προεπισκόπηση μη διαθέσιμη."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "πάρτε το"
@@ -2851,7 +2850,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2892,13 +2891,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Δημιουργία έκδοσης %1$s του %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2909,7 +2908,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2927,7 +2926,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2940,7 +2939,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3039,77 +3038,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Δημιουργία ευρετηρίου"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Κείμενο γραμμής"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Χωρική"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3186,7 +3185,7 @@ msgstr "Επιλογή Διακομιστή"
msgid "Cookies must be enabled past this point."
msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3194,7 +3193,7 @@ msgstr ""
"Η σύνδεση χωρίς κωδικό πρόσβασης απαγορεύεται από τις ρυθμίσεις (δείτε τη "
"μεταβλητή AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3202,8 +3201,8 @@ msgstr ""
"Καμιά δραστηριότητα εδώ και %s δευτερόλεπτα τουλάχιστον, για αυτό "
"ξανασυνδεθείτε"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή MySQL"
@@ -3247,18 +3246,18 @@ msgstr "Πίνακες"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Δεδομένα"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Περίσσεια"
@@ -3371,8 +3370,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Εντολή SQL"
@@ -3382,146 +3381,146 @@ msgstr "Εντολή SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Η MySQL επέστρεψε το μήνυμα: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Αδύνατη η σύνδεση στο εγκυροποιητή SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Ανάλυση SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Χωρίς ανάλυση SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "χωρίς κώδικα PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Δημιουργία κώδικα PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Ανανέωση"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Παράβλεψη επικύρωσης SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Επικύρωση SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Εσωτερική επεξεργασία αυτού του ερωτήματος"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Εσωτερικό"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Δημιουργία προφίλ"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Κυρ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y στις %H:%M:%S"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Απολεσθείσα παράμετρος:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Αρχή"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Προηγούμενη"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Επόμενη"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Τέλος"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Μεταπήδηση στην βάση «%s»."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα, για αυτό δείτε %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Πατήστε για εναλλαγή"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Περιηγηθείτε στον υπολογιστή σας:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Δεν υπάρχουν αρχεία προς αποστολή"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Εκτέλεση"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Εκτύπωση"
@@ -3606,68 +3605,68 @@ msgstr "αμφότερα τα παραπάνω"
msgid "neither of the above"
msgstr "κανένα από τα παραπάνω"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Δεν είναι θετικός αριθμός"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Δεν είναι μη αρνητικός αριθμός"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Μη έγκυρος αριθμός θύρας"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Εσφαλμένη τιμή"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Η τιμή πρέπει να είναι ίση ή μικρότερη από %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Απολεσθέντα δεδομένα για %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "μη διαθέσιμο"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "το «%s» απαιτεί την επέκταση %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "η εισαγωγή δεν θα λειτουργήσει γιατί λείπει η συνάρτηση (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "η εξαγωγή δεν θα λειτουργήσει γιατί λείπει η συνάρτηση (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Ο Εγκυροποιητής SQL είναι απενεργοποιημένος"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Η επέκταση SOAP δεν βρέθηκε"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "μέγιστος αριθμός %s"
@@ -3688,7 +3687,7 @@ msgid "Set value: %s"
msgstr "Ορισμός τιμής: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Επαναφορά προεπιλεγμένης τιμής"
@@ -3990,7 +3989,7 @@ msgid "Character set of the file"
msgstr "Σύνολο χαρακτήρων αρχείου"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Μορφοποίηση"
@@ -4089,7 +4088,7 @@ msgstr "Κλειδί ετικέτας"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Τύπος MIME"
@@ -4213,8 +4212,8 @@ msgstr "Προσαρμογή προεπιλεγμένων επιλογών"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4653,14 +4652,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Ελάχιστος αριθμός πινάκων για προβολή του πλαισίου φίλτρου πίνακα"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Ελάχιστος αριθμός πινάκων για προβολή του πλαισίου φίλτρου πίνακα"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Κείμενο που διαχωρίζει τις βάσεις δεδομένων σε διαφορετικά επίπεδα"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Διαχωριστικό δέντρου βάσης δεδομένων"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4668,41 +4673,41 @@ msgstr ""
"Μόνο απλή έκδοση; δενδροειδής προβολή βάσεων δεδομένων (προσδορίζεται από το "
"διαχωριστικό που ορίζεται παρακάτω)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Δενδροειδής προβολή βάσεων δεδομένων"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
"Απενεργοποιήστε το αν θέλετε να δείτε όλες τις βάσεις δεδομένων μονομιάς"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Χρήση απλής έκδοσης"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Μέγιστο βάθος δέντρου πίνακα"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Κείμενο που διαχωρίζει τους πίνακες σε διαφορετικά επίπεδα"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Διαχωριστικό δέντρου πινάκων"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
"Ο Σϋνδεσμος URL όπου θα τοποιθετηθεί στο λογότυπο στο πλαίσιο πλοήγησης"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Διεύθυνση URL συνδέσμου λογοτύπου"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4710,40 +4715,40 @@ msgstr ""
"Ανοίγει τη συνδεδεμένη σελίδα στο κύριο παράθυρο ([kbd]main[/kbd]) ή σε νέο "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Προορισμός συνδέσμου λογοτύπου"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Επισήμανση διακομιστή με τον δείκτη του ποντικιού"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Ενεργοποίηση επισήμανσης"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Μέγιστος αριθμός πρόσφατα χρησιμοποιημένων πινάκων. ορίστε το σε 0 για "
"απενεργοποιήση"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Πρόσφατα χρησιμποιημένοι πίνακες"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Μέγιστος αριθμός χαρακτήρων που φαίνεται σε μη αριθμητική στήλη στην προβολή "
"φυλλομετρητή"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Όριο χαρακτήρων στήλης"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4754,11 +4759,11 @@ msgstr ""
"διακομιστή. Ορίζοντάς το σε FALSE είναι εύκολο να ξεχάσετε να αποσυνδεθείτε "
"από άλλους διακομιστές όταν συνδέεστε σε πολλούς."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Διαγραφή όλων των cookies με την αποσύνδεση"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4766,11 +4771,11 @@ msgstr ""
"Ορίζει αν η προηγούμενη σύνδεση πρέπει να επανακληθεί ή όχι σε κατάσταση "
"επικύρωσης cookie"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Επανάκληση ονόματος χρήστη"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4782,50 +4787,50 @@ msgstr ""
"για την τρέχουσα συνεδρία και θα διαγραφεί μόλις κλείσετε τον φυλλομετρητή. "
"Αυτό προτείνεται για μη αξιόπιστα περιβάλλοντα."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Αποθήκευση cookie σύνδεσης"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Ορίστε χρονικά (σε δευτερόλεπτα) την ισχύ ενός cookie σύνδεσης"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Εγκυρότητα cookie σύνδεσης"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Διπλό μέγεθος του textarea για στήλες LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Μεγαλύτερο textarea για LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Μέγιστος αριθμός χαρακτήρων όταν προβάλεται ένα ερώτημα SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Μέγιστο μήκος προβολής SQL"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Οι χρήστες δεν μπορούν να ορίσουν μεγαλύτερη τιμή"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Μέγιστος αριθμός βάσεων δεδομένων που προβάλονται στο αριστερό πλαίσιο και "
"στη λίστα βάσεων δεδομένων"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Μέγιστος αριθμός βάσεων δεδομένων"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4835,19 +4840,19 @@ msgstr ""
"αποτέλεσμα. Αν το αποτέλεσμα περιέχει περισσότερες γραμμές, θα εμφανίζονται "
"σύνδεσμοι «Προηγούμενο» και «Επόμενο»."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Μέγιστος αριθμός γραμμών για προβολή"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Μέγιστος αριθμός πινάκων"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4855,11 +4860,11 @@ msgstr ""
"Απενεργοποιήση της προεπιλεγμένης προειδοποιησης που εμφανίζεται αν το "
"mcrypt λείπει γιατην πιστοποίηση cookie"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "προειδοποιηση mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4867,46 +4872,46 @@ msgstr ""
"Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. [kbd]32M"
"[/kbd] ([kbd]0[/kbd] για απεριόριστη)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Όριο μνήμης"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Αυτοί είναι οι σύνδεσμοι Επεξεργασία, Αντιγραφή και Διαγραφή"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Που να προβάλονται οι σύνδεσμοι γραμμής πίνακα"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
"Χρήση φυσικής ταξινόμησης για την ταξινόμηση ονομάτων πινάκων και βάσεων "
"δεδομένων"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Φυσική ταξινόμηση"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Χρήση μόνο εικονιδίων, μόνο κειμένου ή και τα δύο"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Γραμμή πλοήγησης με εικονίδια"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"Χρήση εξαγόμενου GZip buffering για αυξημένη ταχύτητα σε μεταφορές HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Εξαγόμενο GZip buffering"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4914,19 +4919,19 @@ msgstr ""
"[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για στήλες τύπου TIME, DATE, "
"DATETIME και TIMESTAMP, αύξουσα ταξινόμηση στα υπόλοιπα"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Προεπιλεγμένη ταξινόμηση"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Χρήση εξαναγκασμένων συνδέσεων στις βάσεις δεδομένων MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Επιμένουσες συνδέσεις"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4936,23 +4941,23 @@ msgstr ""
"λεπτομερούς δομής της βάσης δεδομένων, αν κάποιο από τους απαραίτητους "
"πίνακες για την αποθήκευση ρυθμίσεων του phpMyAdmin δεν βρεθεί"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Λείπουν πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Λειτουργίες πίνακα με εικονίδια"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Αποτροπή επεξεργασίας στηλών BLOB και BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Προστασία δυαδικών στηλών"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4962,118 +4967,118 @@ msgstr ""
"ρυθμίσεων phpMyAdmin). Αν απενεργοποιηθεί, λειτουργούν ρουτίνες JS για "
"προβολή του ιστορικού ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Μόνιμο ιστορικό ερωτημάτων"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Πόσα ερωτήματα παραμένουν στο ιστορικό"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Μέγεθος ιστορικού ερωτημάτων"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Προβολή καρτέλας με το άνοιγμα νέου παραθύρου ερωτήματος"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Προεπιλεγμένη καρτέλα παραθύρου ερωτήματος"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Ύψος παραθύρου ερωτήματος (σε εικονοστοιχεία)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Ύψος παραθύρου ερωτήματος"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Πλάτος παραθύρου ερωτήματος (σε εικονοστοιχεία)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Πλάτος παραθύρου ερωτήματος"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Επιλέξτε ποιες συναρτήσεις θα χρησιμοποιηθούν για μετατροπή συνόλων "
"χαρακτήρων"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Μηχανή επανακωδικοποίησης"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
"Όταν μεταικινήστε μταξύ πινάκων, η ταξινόμηση για κάθε πίανακα "
"απομνημονεύεται"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Απομνημόνευση ταξινόμησης πινάκων"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Επανάληψη κεφαλίδων κάθε Χ κελιά. Το [kbd]0[/kbd] απενεργοποιεί το "
"χαρακτηριστικό"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Επανάληψη κεφαλίδων"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Αποθήκευση όλων των επεξεργασμένων κελιών μαζί"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Ο φάκελος στον διακομιστή όπου οι εξαγωγές μπορούν να αποθηκευτούν"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Φάκελος αποθήκευσης"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Αφήστε το άδειο αν δεν χρησιμοποιηθεί"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Σειρά πιστοποίησης φιλοξενητή"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Αφήστε κενό για προεπιλογές"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Κανόνες πιστοποίησης φιλοξενητή"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Δικαίωμα συνδέσεων χωρίς κωδικό πρόσβασης"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Δικαίωμα ριζικής σύνδεσης"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
"Το βασίλειο του HTTP Basic Auth εμφανίζεται όταν γίνεται πιστοποίηση HTTP"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Βασίλειο HTTP"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5083,19 +5088,19 @@ msgstr ""
"υλικού SweKey[/a] (δεν βρίσκεται στο ριζικό φάκελο του εγγράφου; "
"προτείνεται: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Αρχείο ρυθμίσεων SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Μέθοδος επικύρωσης για χρήση"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Τύπος επικύρωσης"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5103,11 +5108,11 @@ msgstr ""
"Αφήστε κενό αν δεν υπάρχει [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"σελιδοδείκτης[/a] υποστήριξης, προτείνεται: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Πίνακας σελιδοδεικτών"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5115,33 +5120,33 @@ msgstr ""
"Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες, σας "
"προτείνεται: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Πίνακας πληροφοριών στήλης"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Συνδεση συμπίεσης στο διακομιστή MySQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Σύνδεση συμπίεσης"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Πως να συνδεθείτε στο διακομιστή, κρατήστε το [kbd]tcp[/kbd] αν δεν είστε "
"σίγουρος/η"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Τύπος σύνδεσης"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Έλεγχος κωδικού πρόσβασης χρήστη"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5150,11 +5155,11 @@ msgstr ""
"Περισσότερες πληροφορίες είναι διαθέσιμες στο [a@http://wiki.phpmyadmin.net/"
"pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Έλεγχος χρήστη"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5162,19 +5167,19 @@ msgstr ""
"Ένας εναλλακτικός φιλοξενητής για αποθήκευση των ρυθμίσεων, αφήστε το κενό "
"για χρήση του ήδη ορισμένου"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Έλεγχος φιλοξηνητή"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Απαρίθμηση πινάκων όταν εμφανίζεται η λίστα βάσεων δεδομένων"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Απαρίθμηση πινάκων"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5182,11 +5187,11 @@ msgstr ""
"Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή. Προτείνεται: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Πίνακας σχεδιαστή"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5195,28 +5200,28 @@ msgstr ""
"aid=1849494]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Απενεργοποίηση χρήσης του INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Ποια επέκταση PHP να χρησιμοποιήσετε. Προτείνεται η mysqli αν υποστηρίζεται"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Επέκταση PHP για χρήση"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Απόκρυψη βάσεων δεδομένων που ταιριάζουν την κανονική έκφραση (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Απόκρυψη βάσεων δεδομένων"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5224,23 +5229,23 @@ msgstr ""
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Πίνακας ιστορικού ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Ονομασία θέσης όπου εκτελείται ο διακομιστής MySQL"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Ονομασία θέσης διακομιστή"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Διεύθυνση URL αποσύνδεσης"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5248,19 +5253,19 @@ msgstr ""
"Περιορίζει τον αριθμό των προτιμήσεων πινάκων που αποθηκεύονται στη βάση "
"δεδομένων, οι παλαιές εγγραφές απομακρύνονται αυτόματα"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Μέγιστος αριθμός προτιμήσεων πινάκων για αποθήκευση"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Δοκιμάστε να συνδεθείτε χωρίς κωδικό πρόσβασης"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Σύνδεση χωρίς κωδικό πρόσβασης"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5275,30 +5280,30 @@ msgstr ""
"τους σε σειρά και χρησιμοποιώντας το [kbd]*[/kbd] στο τέλος για να δείξετε "
"τις υπόλοιπες σε αλφαβητική σειρά."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Εμφάνιση μόνο των βάσεων δεδομένων από λίστα"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Αφήστε το άδειο αν δεν χρησιμοποιείτε ρύθμισμένη επικύρωση"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύρωση"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: [kbd]pma_pdf_pages"
"[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "Σχέδιο PDF: πίνακας σελίδων"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5309,20 +5314,20 @@ msgstr ""
"a] για λεπτομέρειες. Αφήστε κενό για να μην υπάρχει υποστήριξη. Προτείνεται: "
"[kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Όνομα βάσης δεδομένων"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Θύρα που αποκρίνεται ο διακομιστής MySQL. Αφήστε το άδειο για προεπιλογή"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Θύρα διακομιστή"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5330,11 +5335,11 @@ msgstr ""
"Αφήστε το κενό για μη «μόνιμους» πρόσφατα χρησιμοποιημένους πίνακες μεταξύ "
"συνεδριών, προτείνεται: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Πρόσφατα χρησιμοποιημένος πίνακας"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5343,19 +5348,19 @@ msgstr ""
"pma/relation]συνδέσμων-συσχετίσεων[/a], σας προτείνεται: [kbd]pma_relation[/"
"kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Πίνακας συσχετίσεων"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Εντολή SQL που φέρνει τις διαθέσιμες βάσεις δεδομένων"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Εντολή SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5363,44 +5368,44 @@ msgstr ""
"Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους "
"επικύρωσης[/a] για ένα παράδειγμα"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Ονομάσία συνεδρίας σύνδεσης"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Διεύθυνση URL σύνδεσης"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Η υποδοχή στην οποία ο διακομιστής MySQL αποκρίνεται. Αφήστε το κενό για "
"προεπιλογή"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Υποδοχή διακομιστή"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Ενεργοποιήση SSL για σύνδεση στο διακομιστή MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Χρήση SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Σχέδιο PDF: συντεταγμένες πίνακα"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5408,11 +5413,11 @@ msgstr ""
"Ο πίνακας που περιγράφει τις προβαλλόμενες στήλες - αφήστε το κενό για να "
"μην υποστηρίζεται - προτείνεται: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Πίνακας προβολής στηλών"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5420,11 +5425,11 @@ msgstr ""
"Αφήστε το κενό για μη «μόνιμο» περιβάλλον εργασίας ρυθμίσεων πινάκων μεταξύ "
"συνεδριών, προτείνεται: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Πίνακας προτιμήσεων UI"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5432,11 +5437,11 @@ msgstr ""
"Όταν δηλωθεί DROP DATABASE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην "
"καταγραφή κατά τη δημιουργία βάσης δεδομένων."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Προσθήκη της εντολής DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5444,11 +5449,11 @@ msgstr ""
"Όταν δηλωθεί DROP TABLE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην "
"καταγραφή κατά τη δημιουργία πίνακα."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Προσθήκη DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5456,21 +5461,21 @@ msgstr ""
"Όταν δηλωθεί DROP VIEW IF EXISTS θα προστεθεί ως πρώτη γραμμή στην καταγραφή "
"κατά τη δημιουργία προβολής."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Προσθήκη DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Ορίζει τη λίστα των δηλώσεων που χρησιμοποιεί η αυτόματη δημιουργία για νέες "
"εκδόσεις."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Δηλώσεις προς παρακολούθηση"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5478,11 +5483,11 @@ msgstr ""
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Πίνακας ιστορικού παρακολούθησης ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5490,11 +5495,11 @@ msgstr ""
"Αν ο μηχανισμός παρακολούθησης δημιουργεί εκδόσεις για πίνακες και προβολές "
"αυτόματα."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Αυτόματη δημιουργία εκδόσεων"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5502,15 +5507,15 @@ msgstr ""
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]"
"pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστη"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Χρήστης για ρυθμισμένη επικύρωση"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5518,19 +5523,19 @@ msgstr ""
"Μια φιλοχρηστική περιγραφή αυτού του διακομιστή. Αφήστε το κενό για να "
"εμφανίζεται το όνομα."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Φιλοχρηστικό όνομα διακομιστή"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Αν θα εμφανίζεται στο χρήστη ένα κουμπί «εμφάνιση όλων (γραμμών)»"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Δικαίωμα προβολή όλων των γραμμών"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5541,45 +5546,45 @@ msgstr ""
"ρυθμίσεων και αυτό δεν περιορίζει τη δυνατότητα άμεσης εκτέλεσης της ίδιας "
"εντολής"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Εμφάνιση φόρμας αλλαγής κωδικού πρόσβασης"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Εμφάνιση φόρμας δημιουργίας βάσης δεδομένων"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Προβολή περισσοτέρων δράσεων"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Προβολή κατάστασης πρωτεύοντος"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5587,11 +5592,11 @@ msgstr ""
"Ορίζεται αν θα εμφανίζετια ή όχι η επιλογή κατεύθυνσης προβολής κατά την "
"περιήγηση σε πίνακα"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Προβολή κατεύθυνσης προβολής"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5599,27 +5604,27 @@ msgstr ""
"Ορίζει αν θα εμφανίζονται οι τύποι των πεδίων σε κατάσταση επεξεργασίας/"
"εισαγωγής"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Εμφάνιση τύπων πεδίου"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Προβολή των πεδίων συναρτήσεων σε κατάσταση επεξεργασίας εισαγωγής"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Εμφάνιση πεδίων συναρτήσεων"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Αν θα εμφανίζεται επεξήγηση ή όχι"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Εμφάνιση επεξήγησης"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5627,45 +5632,45 @@ msgstr ""
"Εμφανίζει σύνδεσμο για την τεκμηρίωση της συνάρτησης [a@http://php.net/"
"manual/function.phpinfo.php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Εμφάνιση συνδέσμου phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Εμφάνιση λεπτομερών πληροφοριών διακομιστή MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Ορίζει αν τα δημιουργημένα ερωτήματα SQL από το phpMyAdmin πρέπει να "
"προβάλονται"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Εμφάνιση ερωτημάτων SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Ορίζεται αν το ερώτημα πρέπει να παραμείνει στην οθόνη μετά την υποβολή του"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Διατήρηση παραθύρου ερωτήματος"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Δικαίωμα προβολής στατιστικών βάσης δεδομένων και πινάκων (π.χ. χρήση χώρου "
"στο δίσκο)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Εμφάνιση στατιστικών"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5673,11 +5678,11 @@ msgstr ""
"Αν οι επεξηγήσεις είναι ενεργοποιημένες και έχει οριστεί σχόλιο για τη βάση "
"δεδομένων, αυτή η επιλογή θα αντικαταστήσει το όνομα με το σχόλιο"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Προβολή σχολίου βάσης δεδομένων αντί για το όνομα"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5689,30 +5694,30 @@ msgstr ""
"$cfg['LeftFrameTableSeparator'], έτσι μόνο ο φάκελος καλείται όπως η "
"ετικέτα, ενώ το όνομα του πίνακα δεν αλλάζει"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Προβολή σχολίου πίνακα αντί για το όνομά του"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Προβολή σχολίων πινάκων στις επεξηγήσεις"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Επισήμανση χρησιμοποιημένων πινάκων και ενεργοποίηση της δυνατότητας "
"προβολής των βάσεων δεδομένων με κλειδωμένους πίνακες"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Παράβλεψη κλειδωμένων πινάκων"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποιητή SQL"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5722,7 +5727,7 @@ msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποι
msgid "Password"
msgstr "Κωδικός πρόσβασης"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5730,11 +5735,11 @@ msgstr ""
"[strong]Προειδοποίηση:[/strong] απαιτείται η επέκταση PHP SOAP ή η PEAR SOAP "
"να έχει εγκατασταθεί"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Ενεργοποίηση του Εγκυροποιητή SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5742,20 +5747,20 @@ msgstr ""
"Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:[kbd]"
"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Όνομα χρήστη"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Μια προειδοποίηση εμφανίζεται στη βασική σελίδα αν βρεθεί το Suhosin"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "προειδοποίηση Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5764,11 +5769,11 @@ msgstr ""
"πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2) και το παράθυρο των "
"ερωτημάτων (x1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Στήλες textarea"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5777,32 +5782,32 @@ msgstr ""
"πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2) και το παράθυρο των "
"ερωτημάτων (x1,25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Γραμμές textarea"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
"Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται μια βάση δεδομένων"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν δεν επιλέγεται τίποτα"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Προεπιλεγμένος τίτλος"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας διακομιστής"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας πίνακας"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5814,28 +5819,28 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) προερχόμενη από τη διεύθυνση 1.2.3.4:"
"[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Λίστα αξιόπιστων διευθύνσεων IP για να επιτρέπεται/απαγορεύεται"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"Φάκελος στο διακομιστή όπου μπορείτε να αποστείλετε αρχεία για εισαγωγή"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Φάκελος αποστολής"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Επιτρέπει την αναζήτηση εντός ολόκληρης της βάσης δεδομένων"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Χρήση αναζήτησης βάσης δεδομένων"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5843,29 +5848,29 @@ msgstr ""
"Όταν απενεργοποιηθεί, οι χρήστες δεν μπορούν να ορίσουν καμιά από τις "
"παρακάτω επιλογές, ανεξάρτητα από την επιλογή στα δεξιά"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Ενεργοποίηση της καρτέλας Δημιουργός στις ρυθμίσεις"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Έλεγχος για τελευταία έκδοση"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Ενεργοποιεί τον έλεγχο για τη τελευταία έκδοση στη κεντρική σελίδα του "
"phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Έλεγχος έκδοσης"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5873,7 +5878,7 @@ msgstr ""
"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]"
"ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5894,87 +5899,87 @@ msgid "Signon authentication"
msgstr "Σειρά επικύρωσης"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV με χρήση LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα - ODS"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Γρήγορο"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Προσαρμοσμένο"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Επιλογές εξαγωγής βάσης δεδομένων"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "Μορφή CSV για δεδομένα MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Έγγραφο Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Δεν ήταν δυνατή η εκκίνηση βιβλιοθήκης σύνδεσης Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Αδύνατη η σύνδεση στο διακομιστή Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Αδύνατη η σύνδεση στο διακομιστή MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"Άδειασμα ονόματος χρήστη ενώ χρησιμοποιείτε ρυθμισμένη μέθοδο επικύρωσης"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"Άδειασμα ονομασίας συνεδρίας σύνδεσης ενώ χρησιμοποιείτε μέθοδο επικύρωσης "
"σύνδεσης"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"Άδειασμα διεύθυνση URL σύνδεσης ενώ χρησιμοποιείτε μέθοδο επικύρωσης σύνδεσης"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Άδειασμα ελέγχου χρήστη του phpMyAdmin ενώ χρησιμοποιείτε pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"Άδειασμα ελέγχου κωδικού πρόσβασης του phpMyAdmin ενώ χρησιμοποιείτε pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Εσφαλμένη διεύθυνση IP: %s"
@@ -5994,7 +5999,7 @@ msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσει
msgid "possible deep recursion attack"
msgstr "πιθανή βαθειά ανάδρομή επίθεση"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6002,15 +6007,15 @@ msgstr ""
"Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί "
"σωστά)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Ο διακομιστής δεν αποκρίνεται."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Λεπτομέρειες..."
@@ -6074,7 +6079,7 @@ msgstr "Δημιουργία πίνακα"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Όνομα"
@@ -6233,26 +6238,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Μετατροπή κωδικοποίησης:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "committed on %1$s by %2$s"
msgstr "Δημιουργία έκδοσης %1$s του %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "authored on %1$s by %2$s"
@@ -6982,18 +6987,17 @@ msgid "Display MIME types"
msgstr "Διαθέσιμοι τύποι MIME"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Φιλοξενητής"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Χρόνος δημιουργίας"
@@ -7220,15 +7224,7 @@ msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοπο
msgid "GLOBALS overwrite attempt"
msgstr "προσπάθεια επανεγγραφής GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "αποτέλεσμα SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Δημιουργήθηκε από"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7328,7 +7324,7 @@ msgstr "Μη έγκυρο πλήθος πεδίων στο εισαχθέν CSV
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Ονομασία πίνακας"
@@ -7686,7 +7682,7 @@ msgstr "Δημιουργία αρχείων PDF"
msgid "Displaying Column Comments"
msgstr "Εμφάνιση σχολίων πεδίων"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Μετατροπή περιηγητή"
@@ -7794,10 +7790,10 @@ msgid "Variable"
msgstr "Μεταβλητή"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Τιμή"
@@ -7860,7 +7856,7 @@ msgstr "Παραγωγή Κωδικού Πρόσβασης"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7898,8 +7894,8 @@ msgid "Edit event"
msgstr "Επεξεργασία συμβάντος"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Σφάλμα στην προώθηση αιτημάτος"
@@ -7949,7 +7945,7 @@ msgstr "Διατήρηση με την ολοκλήρωση"
msgid "Definer"
msgstr "Προσδιοριστής"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Ο οριστής πρέπει να είναι της μορφής «username@hostname»"
@@ -8012,7 +8008,7 @@ msgstr ""
"επέκταση «mysqli» για να αποφύγετε προβλήματα."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Μη έγκυρος τύπος ρουτίνας: «%s»"
@@ -8083,17 +8079,17 @@ msgstr "Τύπος ασφάλειας"
msgid "SQL data access"
msgstr "Πρόσβαση δεδομένων SQL"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Πρέπει να δώσετε ένα όνομα στη ρουτίνα"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Εσφαλμένη κατεύθυνση «%s» δόθηκε για την παράμετρο."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8101,20 +8097,20 @@ msgstr ""
"Πρέπει να δώσετε μήκος/τιμές για τις παραμέτρους της ρουτίνας του τύπου "
"ENUM, SET, VARCHAR και VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
"Πρέπει να δώσετε ένα όνομα και ένα τύπο για κάθε παράμετρος της ρουτίνας."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Πρέπει να δώσετε ένα έγκυρο τύπο επιστροφής για τη ρουτίνα."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Πρέπει να δώσετε ένα προσδιορισμό ρουτίνας."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8122,22 +8118,22 @@ msgstr[0] "%d εγγραφή επηρεάστηκε από την τελευτα
msgstr[1] ""
"%d εγγραφές επηρεάστηκαν από την τελευταία δήλωση μέσα στη διαδικασία"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Εκτέλεση ρουτίνας"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Παράμετροι ρουτίνας"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Συνάρτηση"
@@ -8313,7 +8309,7 @@ msgstr "Πίνακας περιεχομένων"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Χαρακτηριστικά"
@@ -8412,12 +8408,12 @@ msgid "Toggle scratchboard"
msgstr "Εναλλαγή πίνακα σχεδιασμού"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Άγνωστη γλώσσα: %1$s."
@@ -8463,7 +8459,7 @@ msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο δ
msgid "Run SQL query/queries on database %s"
msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Καθάρισμα"
@@ -8472,11 +8468,11 @@ msgstr "Καθάρισμα"
msgid "Columns"
msgstr "Στήλες"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
@@ -8576,12 +8572,12 @@ msgstr ""
"Ο επικυρωτής SQL δεν μπόρεσε να ξεκινήσει. Ελέγξτε ότι έχετε εγκαταστήσει "
"της απαραίτητες επεκτάσεις της PHP όπως περιγράφεται στην %sτεκμηρίωση%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Παρακολούθηση του %s ενεργοποιήθηκε."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8593,7 +8589,7 @@ msgstr ""
"εισάγετε την ανάποδη κάθετο («\\») ή απλά εισαγωγικά («'»), προθέστε τα με "
"ανάποδη κάθετο στην αρχή (για παράδειγμα '\\\\χψω' ή 'α\\'β')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8601,19 +8597,19 @@ msgstr ""
"Για προκαθορισμένες τιμές, παρακαλώ εισάγετε μία τιμή, χωρίς χαρακτήρες "
"διαφυγής ή εισαγωγικά, χρησιμοποιώντας τη μορφή: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Ευρετήριο"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Απομάκρυνση στήλης(ών)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8622,11 +8618,11 @@ msgstr ""
"Για μία λίστα με τις διαθέσιμες μετατροπές και τις μετατροπές τύπου MIME, "
"πατήστε %sπεριγραφές μετατροπών%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Επιλογές μετατροπής"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8638,72 +8634,72 @@ msgstr ""
"εισαγωγικά («'») στις τιμές, χρησιμοποιείτε καθέτους (παράδειγμα '\\\\χψω' ή "
"'α\\'β')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Τα δεδομένα ENUM ή SET είναι πολύ μεγάλα;"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Λήψη περισσότερου χώρου επεξεργασίας"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Καμία"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Όπως ορίστηκε:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Πρωτεύον"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Πλήρες κείμενο"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Μετά το %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Προσθήκη %s στήλης(ών)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Μηχανή αποθήκευσης"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Ορισμός PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Τελεστής"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Αναζήτηση Πίνακα"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Επεξεργασία/Προσθήκη"
@@ -8874,11 +8870,11 @@ msgstr ""
"Οι προτιμήσεις σας θα αποθηκευτούν για την τρέχουσα συνεδρία μόνο. Για τη "
"μόνιμη αποθήκευση τους απαιτείται %sαποθήκευση ρυθμίσεων phpMyAdmin%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Αδύνατη η αποθήκευση ρυθμίσεων"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8890,8 +8886,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Δεν βρέθηκαν αρχεία στο συμπιεσμένο αρχείο ZIP!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:"
@@ -9072,16 +9068,22 @@ msgstr ""
msgid "No databases"
msgstr "Δεν υπάρχουν βάσεις δεδομένων"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Φιλτράρισμα πινάκων κατά όνομα"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Φιλτράρισμα πινάκων κατά όνομα"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Δημιουργία πίνακα"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Παρακαλώ επιλέξτε μία βάση δεδομένων"
@@ -10250,7 +10252,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Ερωτήσεις από την εκκίνηση: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Δηλώσεις"
@@ -11550,14 +11552,14 @@ msgstr "Παράβλεψη σφαλμάτων"
msgid "Show form"
msgstr "Εμφάνιση φόρμας"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Ούτε διεύθυνση URL ούτε CURL είναι διαθέσιμα. Ο έλεγχος της έκδοσης δεν "
"είναι δυνατό να γίνει."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11565,15 +11567,15 @@ msgstr ""
"Η ανάγνωση της έκδοσης απέτυχε. Ίσως είστε εκτός δικτύου ή ο αναβαθμισμένος "
"διακομιστής δεν αποκρίνεται."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Ελήφθει μη έγκυρη έκδοση από τον διακομιστή"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Μη αναγνώσιμος αριθμός έκδοσης"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11582,11 +11584,11 @@ msgstr ""
"Χρησιμοποιείτε έκδοση Git, τρέξτε το [kbd]git pull[/kbd] :-)[br]Η τελευταία "
"σταθερή έκδοση είναι %s, δημοσιεύτηκε την %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Δεν υπάρχει νεότερη σταθερή έκδοση διαθέσιμη"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11600,7 +11602,7 @@ msgstr ""
"προστασία με βάση την IP ίσως να μην είναι αξιόπιστη γιατί μπορεί η IP σας "
"να ανήκει σε πάροχο με χιλιάδες χρήστες."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11610,7 +11612,7 @@ msgstr ""
"Έτσι δημιουργήθηκε αυτόματα ένα κλειδί για σας. Χρησιμοποιήθηκε για την "
"κρυπτογράφηση cookies. Δεν χρειάζεται να το θυμάστε."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11619,7 +11621,7 @@ msgstr ""
"Η %sσυμπίεση και αποσυμπίεση Bzip2%s απαιτεί συναρτήσεις (%s) που δεν είναι "
"διαθέσιμες σε αυτό το σύστημα."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11628,14 +11630,14 @@ msgstr ""
"είναι καθολικά προσβάσιμος ούτε αναγνώσιμος ούτε εγγράψιμος από άλλους "
"χρήστες στο διακομιστή σας."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Αυτή η %sεπιλογή%s πρέπει να ενεργοποιηθεί αν ο διακομιστής σας το "
"υποστηρίζει."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11644,7 +11646,7 @@ msgstr ""
"Η %sσυμπίεση και αποσυμπίεση GZip%s απαιτεί συναρτήσεις (%s) που δεν είναι "
"διαθέσιμες σε αυτό το σύστημα."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11655,7 +11657,7 @@ msgstr ""
"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime"
"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11665,7 +11667,7 @@ msgstr ""
"λεπτά) το περισσότερο. Τιμές μεγαλύτερες από 1800 μπορεί να ελοχεύει "
"κινδύνους απροσωποληψίας."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11675,7 +11677,7 @@ msgstr ""
"δεν είναι 0, η %sεγκυρότητα Σύνδεσης cookie%s πρέπει να οριστεί σε μια τιμή "
"μικρότερη ή ίση με αυτή."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11688,7 +11690,7 @@ msgstr ""
"διακομιστών%s. Ωστόσο, η βασισμένη στις ΙΡ προστασία δεν είναι αξιόπιστη αν "
"ο πάροχός έχει χιλιάδες χρήστες που συνδέονται."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11703,7 +11705,7 @@ msgstr ""
"άμεση πρόσβαση. Ορίστε τον %sτύπο πιστοποίησης%s σε [kbd]cookie[/kbd] ή [kbd]"
"http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11712,7 +11714,7 @@ msgstr ""
"Η %sσυμπίεση Zip%s απαιτεί συναρτήσεις (%s) που δεν είναι διαθέσιμες σε αυτό "
"το σύστημα."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11721,26 +11723,26 @@ msgstr ""
"Η %sαποσυμπίεση Zip%s απαιτεί συναρτήσεις (%s) που δεν είναι διαθέσιμες σε "
"αυτό το σύστημα."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"Πρέπει να χρησιμοποιήσετε συνδέσεις SSL αν ο διακομιστής ιστού σας τις "
"υποστηρίζει."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Πρέπει να χρησιμοποιείτε την mysqli για λόγους απόδοσης."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Επιτρέπετε την σύνδεση στο διακομιστή χωρίς κωδικό πρόσβασης."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
"Το κλειδί είναι πολύ μικρό γιατί πρέπει να έχει τουλάχιστον 8 χαρακτήρες."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Το κλειδί πρέπει να περιέχει γράμματα, αριθμούς [em]και[/em] ειδικούς "
@@ -11750,8 +11752,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Εσφαλμένα δεδομένα"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Αναζήτηση μη διακριτών τιμών"
@@ -11781,21 +11783,29 @@ msgstr "Εμφάνιση ερωτήματος SQL"
msgid "Validated SQL"
msgstr "Επικυρωμένη SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "αποτέλεσμα SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Δημιουργήθηκε από"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Ετικέτα"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11916,7 +11926,7 @@ msgstr "Τιμές Υ"
msgid "Table %s already exists!"
msgstr "Ο πίνακας %s υπάρχει ήδη!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Ο πίνακας %1$s έχει δημιουργηθεί."
@@ -12117,43 +12127,43 @@ msgstr "Απομάκρυνση κατάτμησης"
msgid "Check referential integrity:"
msgstr "Έλεγχος ακεραιότητας συσχετίσεων:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Εμφάνιση πινάκων"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Χρήση χώρου"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Χρήση"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Αποτελεσματικός"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Στατιστικά Εγγραφών"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "στατικό"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "δυναμικά"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Μέγεθος γραμμής"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Μέγεθος εγγραφής"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Επόμενη αυτόματη αρίθμηση"
@@ -12447,29 +12457,29 @@ msgstr "Παρακολούθηση αυτών των δηλώσεων χειρι
msgid "Create version"
msgstr "Δημιουργία έκδοσης"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Εκτέλεσε ένα «επερώτημα ανά παράδειγμα» (χαρακτήρας μπαλαντέρ «%») για δύο "
"διαφρετικές στήλες"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Πρόσθετα κριτήρια αναζήτησης"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Χρησιμοποιήστε αυτή τη στήλη για την ετικέτα κάθε σημείου"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Μέγιστος αριθμός γραμμών για εκτύπωση"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Αναζήτηση/Επεξεργασία των σημείων"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Πως να το χρησιμοποιήσετε"
diff --git a/po/en_GB.po b/po/en_GB.po
index d99938c083..894c27af0f 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -5,8 +5,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-04-12 15:12+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-16 15:28+0200\n"
"Last-Translator: Robert Readman \n"
"Language-Team: english-gb \n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.9\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -22,11 +22,11 @@ msgid "Show all"
msgstr "Show all"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Page number:"
@@ -41,30 +41,30 @@ msgstr ""
"cross-window updates."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Search"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -74,7 +74,7 @@ msgstr "Search"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Go"
@@ -114,8 +114,8 @@ msgid "Database comment: "
msgstr "Database comment: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Table comments"
@@ -126,14 +126,14 @@ msgstr "Table comments"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Column"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -141,12 +141,12 @@ msgstr "Column"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Type"
@@ -158,9 +158,9 @@ msgstr "Type"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -170,7 +170,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Default"
@@ -179,18 +179,18 @@ msgstr "Default"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Links to"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Comments"
@@ -201,11 +201,11 @@ msgstr "Comments"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -223,12 +223,12 @@ msgstr "No"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -238,8 +238,8 @@ msgstr "Yes"
msgid "View dump (schema) of database"
msgstr "View dump (schema) of database"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "No tables found in database."
@@ -324,8 +324,8 @@ msgstr "Switch to copied database"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Edit or export relational schema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "Edit or export relational schema"
msgid "Table"
msgstr "Table"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rows"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Size"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "in use"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Creation"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Last update"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Last check"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "Use Tables"
msgid "SQL query on database %s :"
msgstr "SQL query on database %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Submit Query"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Access denied"
@@ -523,8 +522,8 @@ msgstr[0] "%1$s match inside table %2$s "
msgstr[1] "%1$s matched inside table %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Browse"
@@ -600,11 +599,11 @@ msgstr "View %s has been dropped"
msgid "Table %s has been dropped"
msgstr "Table %s has been dropped"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Tracking is active."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Tracking is not active."
@@ -618,7 +617,7 @@ msgstr ""
"%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "View"
@@ -663,7 +662,7 @@ msgstr "Check tables having overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -672,17 +671,18 @@ msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Print view"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Empty"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -725,15 +725,14 @@ msgid "Tracked tables"
msgstr "Tracked tables"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Database"
@@ -751,7 +750,7 @@ msgstr "Updated"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -941,13 +940,13 @@ msgstr "Showing bookmark"
msgid "The bookmark has been deleted."
msgstr "The bookmark has been deleted."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "File could not be read"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -976,7 +975,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Could not load import plug-ins, please check your installation!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s created"
@@ -1002,8 +1001,8 @@ msgstr ""
"However on last run no data has been parsed, this usually means phpMyAdmin "
"won't be able to finish this import unless you increase php time limits."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1112,9 +1111,9 @@ msgid "Close"
msgstr "Close"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edit"
@@ -1138,7 +1137,7 @@ msgstr "Static data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1149,12 +1148,12 @@ msgid "Other"
msgstr "Other"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1237,13 +1236,13 @@ msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1301,27 +1300,27 @@ msgid "Connections"
msgstr "Connections"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1361,9 +1360,9 @@ msgstr "Please add at least one variable to the series"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "None"
@@ -1490,10 +1489,8 @@ msgid "From general log"
msgstr "From general log"
#: js/messages.php:172
-#, fuzzy
-#| msgid "Loading logs"
msgid "Analysing logs"
-msgstr "Loading logs"
+msgstr "Analysing logs"
#: js/messages.php:173
msgid "Analysing & loading logs. This may take a while."
@@ -1532,10 +1529,8 @@ msgid "Jump to Log table"
msgstr "Jump to Log table"
#: js/messages.php:180
-#, fuzzy
-#| msgid "No data"
msgid "No data found"
-msgstr "No data"
+msgstr "No data found"
#: js/messages.php:181
msgid "Log analysed, but no data found in this time span."
@@ -1551,7 +1546,7 @@ msgstr "Explain output"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Time"
@@ -1573,16 +1568,12 @@ msgid "Chart"
msgstr "Chart"
#: js/messages.php:191
-#, fuzzy
-#| msgid "Add chart"
msgid "Edit chart"
-msgstr "Add chart"
+msgstr "Edit chart"
#: js/messages.php:192
-#, fuzzy
-#| msgid "Series:"
msgid "Series"
-msgstr "Series:"
+msgstr "Series"
#. l10n: A collection of available filters
#: js/messages.php:195
@@ -1656,16 +1647,12 @@ msgid "Import"
msgstr "Import"
#: js/messages.php:213
-#, fuzzy
-#| msgid "Could not import configuration"
msgid "Import monitor configuration"
-msgstr "Could not import configuration"
+msgstr "Import monitor configuration"
#: js/messages.php:214
-#, fuzzy
-#| msgid "Please select the primary key or a unique key"
msgid "Please select the file you want to import"
-msgstr "Please select the primary key or a unique key"
+msgstr "Please select the file you want to import"
#: js/messages.php:216
msgid "Analyse Query"
@@ -1868,7 +1855,7 @@ msgstr "%d is not valid row number."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1882,7 +1869,7 @@ msgstr "Hide search criteria"
msgid "Show search criteria"
msgstr "Show search criteria"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Zoom Search"
@@ -2053,7 +2040,7 @@ msgstr "Change Password"
msgid "More"
msgstr "More"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2140,63 +2127,63 @@ msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dec"
@@ -2234,32 +2221,32 @@ msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sat"
@@ -2329,51 +2316,49 @@ msgstr "Second"
#: libraries/Advisor.class.php:67
#, php-format
msgid "PHP threw following error: %s"
-msgstr ""
+msgstr "PHP threw following error: %s"
#: libraries/Advisor.class.php:89
#, php-format
msgid "Failed evaluating precondition for rule '%s'"
-msgstr ""
+msgstr "Failed evaluating precondition for rule '%s'"
#: libraries/Advisor.class.php:106
#, php-format
msgid "Failed calculating value for rule '%s'"
-msgstr ""
+msgstr "Failed calculating value for rule '%s'"
#: libraries/Advisor.class.php:125
#, php-format
msgid "Failed running test for rule '%s'"
-msgstr ""
+msgstr "Failed running test for rule '%s'"
#: libraries/Advisor.class.php:207
-#, fuzzy, php-format
-#| msgid ""
-#| "Failed formatting string for rule '%s'. PHP threw following error: %s"
+#, php-format
msgid "Failed formatting string for rule '%s'."
-msgstr "Failed formatting string for rule '%s'. PHP threw following error: %s"
+msgstr "Failed formatting string for rule '%s'."
#: libraries/Advisor.class.php:361
#, php-format
msgid ""
"Invalid rule declaration on line %1$s, expected line %2$s of previous rule"
msgstr ""
+"Invalid rule declaration on line %1$s, expected line %2$s of previous rule"
#: libraries/Advisor.class.php:378
-#, fuzzy, php-format
-#| msgid "Invalid format of CSV input on line %d."
+#, php-format
msgid "Invalid rule declaration on line %s"
-msgstr "Invalid format of CSV input on line %d."
+msgstr "Invalid rule declaration on line %s"
#: libraries/Advisor.class.php:386
#, php-format
msgid "Unexpected characters on line %s"
-msgstr ""
+msgstr "Unexpected characters on line %s"
#: libraries/Advisor.class.php:400
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
-msgstr ""
+msgstr "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
#: libraries/Advisor.class.php:425 server_status.php:956
msgid "per second"
@@ -2402,11 +2387,11 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Wrong permissions on configuration file, should not be world writeable!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Font size"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Too many error messages, some are not displayed."
@@ -2414,12 +2399,12 @@ msgstr "Too many error messages, some are not displayed."
msgid "File was not an uploaded file."
msgstr "File was not an uploaded file."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"The uploaded file exceeds the upload_max_filesize directive in php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2427,27 +2412,27 @@ msgstr ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "The uploaded file was only partially uploaded."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Missing a temporary folder."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Failed to write file to disk."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "File upload stopped by extension."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Unknown error in file upload."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2455,11 +2440,11 @@ msgstr ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Error while moving uploaded file."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Cannot read (moved) upload file."
@@ -2473,7 +2458,7 @@ msgstr "No index defined!"
msgid "Indexes"
msgstr "Indexes"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2511,46 +2496,46 @@ msgstr ""
"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
"removed."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Databases"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Structure"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insert"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operations"
@@ -2629,27 +2614,27 @@ msgstr "Plug-ins"
msgid "Engines"
msgstr "Engines"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Error"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d row affected."
msgstr[1] "%1$d rows affected."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d row deleted."
msgstr[1] "%1$d rows deleted."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2693,45 +2678,43 @@ msgstr "%s has been disabled for this MySQL server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "This MySQL server does not support the %s storage engine."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "unknown table status: "
-#: libraries/Table.class.php:750
-#, fuzzy, php-format
-#| msgid "Source database"
+#: libraries/Table.class.php:771
+#, php-format
msgid "Source database `%s` was not found!"
-msgstr "Source database"
+msgstr "Source database `%s` was not found!"
-#: libraries/Table.class.php:756
-#, fuzzy, php-format
-#| msgid "Theme %s not found!"
+#: libraries/Table.class.php:779
+#, php-format
msgid "Target database `%s` was not found!"
-msgstr "Theme %s not found!"
+msgstr "Target database `%s` was not found!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Invalid database"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Invalid table name"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Error renaming table %1$s to %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Table %1$s has been renamed to %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Could not save table UI preferences"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2740,7 +2723,7 @@ msgstr ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2751,16 +2734,16 @@ msgstr ""
"after you refresh this page. Please check if the table structure has been "
"changed."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "No valid image path for theme %s found!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "No preview available."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "take it"
@@ -2787,42 +2770,55 @@ msgstr "Theme"
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
+"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
+"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
+"65,535"
#: libraries/Types.class.php:293
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
+"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
+"0 to 16,777,215"
#: libraries/Types.class.php:295
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
+"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
+"range is 0 to 4,294,967,295."
#: libraries/Types.class.php:297
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
+"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
+"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
+"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
+"(default 10), the maximum number of decimals (D) is 30 (default 0)"
#: libraries/Types.class.php:301
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
+"A small floating-point number, allowable values are -3.402823466E+38 to "
+"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
@@ -2830,88 +2826,109 @@ msgid ""
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
+"A double-precision floating-point number, allowable values are "
+"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"2.2250738585072014E-308 to 1.7976931348623157E+308"
#: libraries/Types.class.php:305
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
+"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
+"FLOAT)"
#: libraries/Types.class.php:307
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
+"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
+"64)"
#: libraries/Types.class.php:309
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
+"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
+"values are considered true"
#: libraries/Types.class.php:311
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-msgstr ""
+msgstr "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
-#, fuzzy, php-format
-#| msgid "Create version %1$s of %2$s"
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
+#, php-format
msgid "A date, supported range is %1$s to %2$s"
-msgstr "Create version %1$s of %2$s"
+msgstr "A date, supported range is %1$s to %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
-msgstr ""
+msgstr "A date and time combination, supported range is %1$s to %2$s"
#: libraries/Types.class.php:317
msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
+"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
+"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
-#, fuzzy, php-format
-#| msgid "Error renaming table %1$s to %2$s"
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
+#, php-format
msgid "A time, range is %1$s to %2$s"
-msgstr "Error renaming table %1$s to %2$s"
+msgstr "A time, range is %1$s to %2$s"
#: libraries/Types.class.php:321
msgid ""
"A year in four-digit (4, default) or two-digit (2) format, the allowable "
"values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000"
msgstr ""
+"A year in four-digit (4, default) or two-digit (2) format, the allowable "
+"values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000"
#: libraries/Types.class.php:323
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
+"A fixed-length (0-255, default 1) string that is always right-padded with "
+"spaces to the specified length when stored"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
+"A variable-length (%s) string, the effective maximum length is subject to "
+"the maximum row size"
#: libraries/Types.class.php:327
msgid ""
"A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with "
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
+"A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with "
+"a one-byte prefix indicating the length of the value in bytes"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
msgstr ""
+"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
+"with a two-byte prefix indicating the length of the value in bytes"
#: libraries/Types.class.php:331
msgid ""
"A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, "
"stored with a three-byte prefix indicating the length of the value in bytes"
msgstr ""
+"A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, "
+"stored with a three-byte prefix indicating the length of the value in bytes"
#: libraries/Types.class.php:333
msgid ""
@@ -2919,160 +2936,177 @@ msgid ""
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
+"A TEXT column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
+"characters, stored with a four-byte prefix indicating the length of the "
+"value in bytes"
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
+"Similar to the CHAR type, but stores binary byte strings rather than non-"
+"binary character strings"
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
+"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
+"binary character strings"
#: libraries/Types.class.php:339
msgid ""
"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a "
"one-byte prefix indicating the length of the value"
msgstr ""
+"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a "
+"one-byte prefix indicating the length of the value"
#: libraries/Types.class.php:341
msgid ""
"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored "
"with a three-byte prefix indicating the length of the value"
msgstr ""
+"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored "
+"with a three-byte prefix indicating the length of the value"
#: libraries/Types.class.php:343
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a two-byte prefix indicating the length of the value"
msgstr ""
+"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
+"a two-byte prefix indicating the length of the value"
#: libraries/Types.class.php:345
msgid ""
"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"bytes, stored with a four-byte prefix indicating the length of the value"
msgstr ""
+"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
+"bytes, stored with a four-byte prefix indicating the length of the value"
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
+"An enumeration, chosen from the list of up to 65,535 values or the special "
+"'' error value"
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
-msgstr ""
+msgstr "A single value chosen from a set of up to 64 members"
#: libraries/Types.class.php:351
msgid "A type that can store a geometry of any type"
-msgstr ""
+msgstr "A type that can store a geometry of any type"
#: libraries/Types.class.php:353
msgid "A point in 2-dimensional space"
-msgstr ""
+msgstr "A point in 2-dimensional space"
#: libraries/Types.class.php:355
msgid "A curve with linear interpolation between points"
-msgstr ""
+msgstr "A curve with linear interpolation between points"
#: libraries/Types.class.php:357
-#, fuzzy
-#| msgid "Add a polygon"
msgid "A polygon"
-msgstr "Add a polygon"
+msgstr "A polygon"
#: libraries/Types.class.php:359
msgid "A collection of points"
-msgstr ""
+msgstr "A collection of points"
#: libraries/Types.class.php:361
msgid "A collection of curves with linear interpolation between points"
-msgstr ""
+msgstr "A collection of curves with linear interpolation between points"
#: libraries/Types.class.php:363
msgid "A collection of polygons"
-msgstr ""
+msgstr "A collection of polygons"
#: libraries/Types.class.php:365
msgid "A collection of geometry objects of any type"
-msgstr ""
+msgstr "A collection of geometry objects of any type"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
-msgstr ""
+msgstr "Numeric"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#, fuzzy
-#| msgid "Create an index"
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
-msgstr "Create an index"
+msgstr "Date and time"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#, fuzzy
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
-msgstr "Linestring"
+msgstr "String"
-#: libraries/Types.class.php:668
-#, fuzzy
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
-msgstr ""
+msgstr "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
+"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
+"9,223,372,036,854,775,807"
+
+#: libraries/Types.class.php:707
+msgid "A system's default double-precision floating-point number"
+msgstr "A system's default double-precision floating-point number"
#: libraries/Types.class.php:709
-msgid "A system's default double-precision floating-point number"
-msgstr ""
+msgid "True or false"
+msgstr "True or false"
#: libraries/Types.class.php:711
-msgid "True or false"
-msgstr ""
+msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
+msgstr "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:713
-msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
-msgstr ""
-
-#: libraries/Types.class.php:715
msgid "Stores a Universally Unique Identifier (UUID)"
-msgstr ""
+msgstr "Stores a Universally Unique Identifier (UUID)"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
+"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
+"UTC; TIMESTAMP(6) can store microseconds"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
+"A variable-length (0-65,535) string, uses binary collation for all "
+"comparisons"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
+"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
+"a four-byte prefix indicating the length of the value"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
-msgstr ""
+msgstr "An enumeration, chosen from the list of defined values"
#: libraries/auth/config.auth.lib.php:72
msgid "Cannot connect: invalid settings."
@@ -3142,21 +3176,21 @@ msgstr "Server Choice"
msgid "Cookies must be enabled past this point."
msgstr "Cookies must be enabled past this point."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Log-in without a password is forbidden by configuration (see AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "No activity within %s seconds; please log in again"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Cannot log in to the MySQL server"
@@ -3200,18 +3234,18 @@ msgstr "Tables"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overhead"
@@ -3318,8 +3352,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL query"
@@ -3329,144 +3363,144 @@ msgstr "SQL query"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL said: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Failed to connect to SQL validator!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Explain SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Skip Explain SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Without PHP Code"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Create PHP Code"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Refresh"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Skip Validate SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Inline edit of this query"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profiling"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sun"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s days, %s hours, %s minutes and %s seconds"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Missing parameter:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Previous"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Next"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "End"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Jump to database "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "The %s functionality is affected by a known bug, see %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Click to toggle"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Browse your computer:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Select from the web server upload directory %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "The directory you set for upload work cannot be reached"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "There are no files to upload"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Execute"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Print"
@@ -3550,68 +3584,68 @@ msgstr "both of the above"
msgid "neither of the above"
msgstr "neither of the above"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Not a positive number"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Not a non-negative number"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Not a valid port number"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Incorrect value"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Value must be equal or lower than %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Missing data for %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "unavailable"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" requires %s extension"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "import will not work, missing function (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "export will not work, missing function (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL Validator is disabled"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP extension not found"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maximum %s"
@@ -3630,7 +3664,7 @@ msgid "Set value: %s"
msgstr "Set value: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Restore default value"
@@ -3739,10 +3773,12 @@ msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
+"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
+"CodeMirror[/a]) with syntax highlighting and line numbers"
#: libraries/config/messages.inc.php:35
msgid "Enable CodeMirror"
-msgstr ""
+msgstr "Enable CodeMirror"
#: libraries/config/messages.inc.php:36
msgid ""
@@ -3851,13 +3887,11 @@ msgstr "Default table tab"
#: libraries/config/messages.inc.php:58
msgid "Whether the table structure actions should be hidden"
-msgstr ""
+msgstr "Whether the table structure actions should be hidden"
#: libraries/config/messages.inc.php:59
-#, fuzzy
-#| msgid "Propose table structure"
msgid "Hide table structure actions"
-msgstr "Propose table structure"
+msgstr "Hide table structure actions"
#: libraries/config/messages.inc.php:60
msgid "Show binary contents as HEX by default"
@@ -3932,7 +3966,7 @@ msgid "Character set of the file"
msgstr "Character set of the file"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4031,7 +4065,7 @@ msgstr "Label key"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME type"
@@ -4155,8 +4189,8 @@ msgstr "Customise default options"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4420,18 +4454,12 @@ msgstr ""
"Choose which details to show in the database structure (list of tables)"
#: libraries/config/messages.inc.php:230
-#, fuzzy
-#| msgid "Database structure"
msgid "Table structure"
-msgstr "Database structure"
+msgstr "Table structure"
#: libraries/config/messages.inc.php:231
-#, fuzzy
-#| msgid ""
-#| "Choose which details to show in the database structure (list of tables)"
msgid "Settings for the table structure (list of columns)"
-msgstr ""
-"Choose which details to show in the database structure (list of tables)"
+msgstr "Settings for the table structure (list of columns)"
#: libraries/config/messages.inc.php:232
msgid "Tabs"
@@ -4595,14 +4623,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minimum number of tables to display the table filter box"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Minimum number of tables to display the table filter box"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "String that separates databases into different tree levels"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Database tree separator"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4610,39 +4644,39 @@ msgstr ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Display databases in a tree"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Disable this if you want to see all databases at once"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Use light version"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maximum table tree depth"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "String that separates tables into different tree levels"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Table tree separator"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL where logo in the navigation frame will point to"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo link URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4650,37 +4684,37 @@ msgstr ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo link target"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Highlight server under the mouse cursor"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Enable highlighting"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Maximum number of recently used tables; set 0 to disable"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Recently used tables"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Maximum number of characters shown in any non-numeric column on browse view"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Limit column characters"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4690,11 +4724,11 @@ msgstr ""
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Delete all cookies on logout"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4702,11 +4736,11 @@ msgstr ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Recall user name"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4718,48 +4752,48 @@ msgstr ""
"and will be deleted as soon as you close the browser window. This is "
"recommended for non-trusted environments."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Login cookie store"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Define how long (in seconds) a login cookie is valid"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Login cookie validity"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Double size of textarea for LONGTEXT columns"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Bigger textarea for LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Maximum number of characters used when a SQL query is displayed"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Maximum displayed SQL length"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Users cannot set a higher value"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "Maximum number of databases displayed in left frame and database list"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Maximum databases"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4769,19 +4803,19 @@ msgstr ""
"contains more rows, "Previous" and "Next" links will be "
"shown."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maximum number of rows to display"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Maximum tables"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4789,11 +4823,11 @@ msgstr ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt warning"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4801,43 +4835,43 @@ msgstr ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Memory limit"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "These are Edit, Copy and Delete links"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Where to show the table row links"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Use natural order for sorting table and database names"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Natural order"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Use only icons, only text or both"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Iconic navigation bar"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "use GZip output buffering for increased speed in HTTP transfers"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip output buffering"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4845,19 +4879,19 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Default sorting order"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Use persistent connections to MySQL databases"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Persistent connections"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4867,23 +4901,23 @@ msgstr ""
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Missing phpMyAdmin configuration storage tables"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Iconic table operations"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Disallow BLOB and BINARY columns from editing"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Protect binary columns"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4893,112 +4927,112 @@ msgstr ""
"storage). If disabled, this utilises JS-routines to display query history "
"(lost by window close)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Permanent query history"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "How many queries are kept in history"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Query history length"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Tab displayed when opening a new query window"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Default query window tab"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Query window height (in pixels)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Query window height"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Query window width (in pixels)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Query window width"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Select which functions will be used for character set conversion"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Recoding engine"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "When browsing tables, the sorting of each table is remembered"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Remember table's sorting"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Repeat headers"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Save all edited cells at once"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Directory where exports can be saved on server"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Save directory"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Leave blank if not used"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Host authorisation order"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Leave blank for defaults"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Host authorisation rules"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Allow logins without a password"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Allow root login"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP Basic Auth Realm name to display when doing HTTP Auth"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5008,19 +5042,19 @@ msgstr ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey config file"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Authentication method to use"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Authentication type"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5028,11 +5062,11 @@ msgstr ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Bookmark table"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5040,31 +5074,31 @@ msgstr ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Column information table"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Compress connection to MySQL server"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Compress connection"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Connection type"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Control user password"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5072,11 +5106,11 @@ msgstr ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Control user"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5084,19 +5118,19 @@ msgstr ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Control host"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Count tables when showing database list"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Count tables"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5104,11 +5138,11 @@ msgstr ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Designer table"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5116,27 +5150,27 @@ msgstr ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Disable use of INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "What PHP extension to use; you should use mysqli if supported"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP extension to use"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Hide databases matching regular expression (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Hide databases"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5144,23 +5178,23 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL query history table"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Hostname where MySQL server is running"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Server hostname"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Logout URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5168,19 +5202,19 @@ msgstr ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Maximal number of table preferences to store"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Try to connect without password"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Connect without password"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5194,29 +5228,29 @@ msgstr ""
"their names in order and use [kbd]*[/kbd] at the end to show the rest in "
"alphabetical order."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Show only listed databases"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Leave empty if not using config auth"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Password for config auth"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF schema: pages table"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5226,19 +5260,19 @@ msgstr ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Database name"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "Port on which MySQL server is listening, leave empty for default"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Server port"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5246,11 +5280,11 @@ msgstr ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Recently used table"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5258,19 +5292,19 @@ msgstr ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relation table"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL command to fetch available databases"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES command"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5278,41 +5312,41 @@ msgstr ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Signon session name"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Signon URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "Socket on which MySQL server is listening, leave empty for default"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Enable SSL for connection to MySQL server"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Use SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF schema: table coordinates"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5320,11 +5354,11 @@ msgstr ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Display columns table"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5332,11 +5366,11 @@ msgstr ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "UI preferences table"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5344,11 +5378,11 @@ msgstr ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Add DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5356,11 +5390,11 @@ msgstr ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Add DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5368,20 +5402,20 @@ msgstr ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Add DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Defines the list of statements the auto-creation uses for new versions."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Statements to track"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5389,11 +5423,11 @@ msgstr ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL query tracking table"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5401,11 +5435,11 @@ msgstr ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Automatically create versions"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5413,15 +5447,15 @@ msgstr ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "User preferences storage table"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "User for config auth"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5429,20 +5463,20 @@ msgstr ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Verbose name of this server"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Whether a user should be displayed a "show all (rows)" button"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Allow to display all the rows"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5452,44 +5486,44 @@ msgstr ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Show password change form"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Show create database form"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Show or hide a column displaying the Creation timestamps for all tables"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Show Creation timestamp"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Show or hide a column displaying the Last update timestamp for all tables"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Show Last update timestamp"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Show or hide a column displaying the Last check timestamp for all tables"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Show Last check timestamp"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5497,11 +5531,11 @@ msgstr ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Show display direction"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5509,27 +5543,27 @@ msgstr ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Show field types"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Display the function fields in edit/insert mode"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Show function fields"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Whether to show hint or not"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Show hint"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5537,42 +5571,42 @@ msgstr ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Show phpinfo() link"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Show detailed MySQL server information"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Show SQL queries"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Defines whether the query box should stay on-screen after its submission"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Retain query box"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "Allow to display database and table statistics (eg. space usage)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Show statistics"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5580,11 +5614,11 @@ msgstr ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Display database comment instead of its name"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5596,29 +5630,29 @@ msgstr ""
"['LeftFrameTableSeparator'] directive, so only the folder is called like the "
"alias, the table name itself stays unchanged"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Display table comment instead of its name"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Display table comments in tooltips"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Mark used tables and make it possible to show databases with locked tables"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Skip locked tables"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Requires SQL Validator to be enabled"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5628,7 +5662,7 @@ msgstr "Requires SQL Validator to be enabled"
msgid "Password"
msgstr "Password"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5636,11 +5670,11 @@ msgstr ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Enable SQL Validator"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5648,20 +5682,20 @@ msgstr ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Username"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "A warning is displayed on the main page if Suhosin is detected"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin warning"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5669,11 +5703,11 @@ msgstr ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Textarea columns"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5681,31 +5715,31 @@ msgstr ""
"Textarea size (rows) in edit mode, this value will be emphasised for SQL "
"query textareas (*2) and for query window (*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Textarea rows"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Title of browser window when a database is selected"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Title of browser window when nothing is selected"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Default title"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Title of browser window when a server is selected"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Title of browser window when a table is selected"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5717,27 +5751,27 @@ msgstr ""
"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "List of trusted proxies for IP allow/deny"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Directory on server where you can upload files for import"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Upload directory"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Allow for searching inside the entire database"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Use database search"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5745,27 +5779,27 @@ msgstr ""
"When disabled, users cannot set any of the options below, regardless of the "
"check-box on the right"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Enable the Developer tab in settings"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Check for latest version"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Enables check for latest version on main phpMyAdmin page"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Version check"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5773,7 +5807,7 @@ msgstr ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5794,82 +5828,82 @@ msgid "Signon authentication"
msgstr "Signon authentication"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV using LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Quick"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Custom"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Database export options"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV for MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Could not initialise Drizzle connection library"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Could not connect to Drizzle server"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Could not connect to MySQL server"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Empty username while using config authentication method"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Empty signon session name while using signon authentication method"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Empty signon URL while using signon authentication method"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Empty phpMyAdmin control user while using pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Empty phpMyAdmin control user password while using pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Incorrect IP address: %s"
@@ -5889,7 +5923,7 @@ msgstr "The %s extension is missing. Please check your PHP configuration."
msgid "possible deep recursion attack"
msgstr "possible deep recursion attack"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5897,15 +5931,15 @@ msgstr ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "The server is not responding."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Please check privileges of directory containing database."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Details..."
@@ -5969,7 +6003,7 @@ msgstr "Create table"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Name"
@@ -6126,30 +6160,28 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Encoding Conversion:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
-msgstr ""
+msgstr "%1$s from %2$s branch"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
-msgstr ""
+msgstr "no branch"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
-msgstr ""
+msgstr "Git revision"
-#: libraries/display_git_revision.lib.php:60
-#, fuzzy, php-format
-#| msgid "Create version %1$s of %2$s"
+#: libraries/display_git_revision.lib.php:66
+#, php-format
msgid "committed on %1$s by %2$s"
-msgstr "Create version %1$s of %2$s"
+msgstr "committed on %1$s by %2$s"
-#: libraries/display_git_revision.lib.php:68
-#, fuzzy, php-format
-#| msgid "Create version %1$s of %2$s"
+#: libraries/display_git_revision.lib.php:74
+#, php-format
msgid "authored on %1$s by %2$s"
-msgstr "Create version %1$s of %2$s"
+msgstr "authored on %1$s by %2$s"
#: libraries/display_import.lib.php:61
msgid ""
@@ -6863,18 +6895,17 @@ msgid "Display MIME types"
msgstr "Display MIME types"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Generation Time"
@@ -6893,16 +6924,12 @@ msgid "MediaWiki Table"
msgstr "MediaWiki Table"
#: libraries/export/mediawiki.php:53
-#, fuzzy
-#| msgid "Export contents"
msgid "Export table names"
-msgstr "Export contents"
+msgstr "Export table names"
#: libraries/export/mediawiki.php:60
-#, fuzzy
-#| msgid "horizontal (rotated headers)"
msgid "Export table headers"
-msgstr "horizontal (rotated headers)"
+msgstr "Export table headers"
#: libraries/export/pdf.php:18
msgid "PDF"
@@ -7097,15 +7124,7 @@ msgstr "No data found for GIS visualisation."
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS overwrite attempt"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL result"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generated by"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
@@ -7206,7 +7225,7 @@ msgstr "Invalid column count in CSV input on line %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Table name"
@@ -7221,10 +7240,9 @@ msgid "This plugin does not support compressed imports!"
msgstr "This plug-in does not support compressed imports!"
#: libraries/import/mediawiki.php:246
-#, fuzzy, php-format
-#| msgid "Invalid format of CSV input on line %d."
+#, php-format
msgid "Invalid format of mediawiki input on line: %s."
-msgstr "Invalid format of CSV input on line %d."
+msgstr "Invalid format of mediawiki input on line: %s."
#: libraries/import/ods.php:49
msgid "Import percentages as proper decimals (ex. 12.00% to .12) "
@@ -7250,7 +7268,7 @@ msgstr "ESRI Shape File"
#: libraries/import/shp.php:199
#, php-format
msgid "Geometry type '%s' is not supported by MySQL."
-msgstr ""
+msgstr "Geometry type '%s' is not supported by MySQL."
#: libraries/import/shp.php:360
#, php-format
@@ -7562,7 +7580,7 @@ msgstr "Creation of PDFs"
msgid "Displaying Column Comments"
msgstr "Displaying Column Comments"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
@@ -7665,10 +7683,10 @@ msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Value"
@@ -7731,7 +7749,7 @@ msgstr "Generate Password"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7767,8 +7785,8 @@ msgid "Edit event"
msgstr "Edit event"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Error in processing request"
@@ -7818,7 +7836,7 @@ msgstr "On completion preserve"
msgid "Definer"
msgstr "Definer"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "The definer must be in the \"username@hostname\" format"
@@ -7876,7 +7894,7 @@ msgstr ""
"problems."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Invalid routine type: \"%s\""
@@ -7947,17 +7965,17 @@ msgstr "Security type"
msgid "SQL data access"
msgstr "SQL data access"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "You must provide a routine name"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Invalid direction \"%s\" given for parameter."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -7965,41 +7983,41 @@ msgstr ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "You must provide a name and a type for each routine parameter."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "You must provide a valid return type for the routine."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "You must provide a routine definition."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d row affected by the last statement inside the procedure"
msgstr[1] "%d rows affected by the last statement inside the procedure"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Execution results of routine %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Execute routine"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Routine parameters"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Function"
@@ -8174,7 +8192,7 @@ msgstr "Table of contents"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attributes"
@@ -8273,12 +8291,12 @@ msgid "Toggle scratchboard"
msgstr "Toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unknown language: %1$s."
@@ -8324,7 +8342,7 @@ msgstr "Run SQL query/queries on server %s"
msgid "Run SQL query/queries on database %s"
msgstr "Run SQL query/queries on database %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Clear"
@@ -8333,11 +8351,11 @@ msgstr "Clear"
msgid "Columns"
msgstr "Columns"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Bookmark this SQL query"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Let every user access this bookmark"
@@ -8436,44 +8454,42 @@ msgstr ""
"The SQL validator could not be initialised. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Tracking of %s is activated."
-#: libraries/tbl_properties.inc.php:87
-msgid ""
-"If column type is \"enum\" or \"set\", please enter the values using this "
-"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
-"a single quote (\"'\") amongst those values, precede it with a backslash "
-"(for example '\\\\xyz' or 'a\\'b')."
-msgstr ""
-"If column type is \"enum\" or \"set\", please enter the values using this "
-"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
-"a single quote (\"'\") amongst those values, precede it with a backslash "
-"(for example '\\\\xyz' or 'a\\'b')."
-
#: libraries/tbl_properties.inc.php:88
msgid ""
+"If column type is \"enum\" or \"set\", please enter the values using this "
+"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
+"a single quote (\"'\") amongst those values, precede it with a backslash "
+"(for example '\\\\xyz' or 'a\\'b')."
+msgstr ""
+"If column type is \"enum\" or \"set\", please enter the values using this "
+"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
+"a single quote (\"'\") amongst those values, precede it with a backslash "
+"(for example '\\\\xyz' or 'a\\'b')."
+
+#: libraries/tbl_properties.inc.php:89
+msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Index"
-#: libraries/tbl_properties.inc.php:120
-#, fuzzy
-#| msgid "Remove column(s)"
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
-msgstr "Remove column(s)"
+msgstr "Move column"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8482,11 +8498,11 @@ msgstr ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Transformation options"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8498,72 +8514,71 @@ msgstr ""
"quote (\"'\") amongst those values, precede it with a backslash (for example "
"'\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM or SET data too long?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Get more editing space"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "None"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "As defined:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primary"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
-msgstr ""
+msgstr "first"
-#: libraries/tbl_properties.inc.php:579
-#, fuzzy, php-format
-#| msgid "After %s"
+#: libraries/tbl_properties.inc.php:599
+#, php-format
msgid "after %s"
-msgstr "After %s"
+msgstr "after %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Add %s column(s)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "You have to add at least one column."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Storage Engine"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "PARTITION definition"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Table Search"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Edit/Insert"
@@ -8732,11 +8747,11 @@ msgstr ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Could not save configuration"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8748,8 +8763,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "No files found inside ZIP archive!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Error in ZIP archive:"
@@ -8925,16 +8940,22 @@ msgstr ""
msgid "No databases"
msgstr "No databases"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filter tables by name"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filter tables by name"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Create table"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Please select a database"
@@ -10078,7 +10099,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Questions since startup: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Statements"
@@ -11313,13 +11334,13 @@ msgstr "Ignore errors"
msgid "Show form"
msgstr "Show form"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11327,15 +11348,15 @@ msgstr ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Got invalid version string from server"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Unparsable version string"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11344,131 +11365,131 @@ msgstr ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "No newer stable version is available"
-#: setup/lib/index.lib.php:282
-#, php-format
-msgid ""
-"This %soption%s should be disabled as it allows attackers to bruteforce "
-"login to any MySQL server. If you feel this is necessary, use %strusted "
-"proxies list%s. However, IP-based protection may not be reliable if your IP "
-"belongs to an ISP where thousands of users, including you, are connected to."
-msgstr ""
-"This %soption%s should be disabled as it allows attackers to bruteforce "
-"login to any MySQL server. If you feel this is necessary, use %strusted "
-"proxies list%s. However, IP-based protection may not be reliable if your IP "
-"belongs to an ISP where thousands of users, including you, are connected to."
-
-#: setup/lib/index.lib.php:284
-msgid ""
-"You didn't have blowfish secret set and have enabled cookie authentication, "
-"so a key was automatically generated for you. It is used to encrypt cookies; "
-"you don't need to remember it."
-msgstr ""
-"You didn't have blowfish secret set and have enabled cookie authentication, "
-"so a key was automatically generated for you. It is used to encrypt cookies; "
-"you don't need to remember it."
-
-#: setup/lib/index.lib.php:285
-#, php-format
-msgid ""
-"%sBzip2 compression and decompression%s requires functions (%s) which are "
-"unavailable on this system."
-msgstr ""
-"%sBzip2 compression and decompression%s requires functions (%s) which are "
-"unavailable on this system."
-
-#: setup/lib/index.lib.php:287
-msgid ""
-"This value should be double checked to ensure that this directory is neither "
-"world accessible nor readable or writable by other users on your server."
-msgstr ""
-"This value should be double checked to ensure that this directory is neither "
-"world accessible nor readable or writable by other users on your server."
-
-#: setup/lib/index.lib.php:288
-#, php-format
-msgid "This %soption%s should be enabled if your web server supports it."
-msgstr "This %soption%s should be enabled if your web server supports it."
-
-#: setup/lib/index.lib.php:290
-#, php-format
-msgid ""
-"%sGZip compression and decompression%s requires functions (%s) which are "
-"unavailable on this system."
-msgstr ""
-"%sGZip compression and decompression%s requires functions (%s) which are "
-"unavailable on this system."
-
-#: setup/lib/index.lib.php:292
-#, php-format
-msgid ""
-"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
-"invalidation if %ssession.gc_maxlifetime%s is lower than its value "
-"(currently %d)."
-msgstr ""
-"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
-"invalidation if %ssession.gc_maxlifetime%s is lower than its value "
-"(currently %d)."
-
#: setup/lib/index.lib.php:294
#, php-format
msgid ""
-"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
-"most. Values larger than 1800 may pose a security risk such as impersonation."
+"This %soption%s should be disabled as it allows attackers to bruteforce "
+"login to any MySQL server. If you feel this is necessary, use %strusted "
+"proxies list%s. However, IP-based protection may not be reliable if your IP "
+"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
-"most. Values larger than 1800 may pose a security risk such as impersonation."
+"This %soption%s should be disabled as it allows attackers to bruteforce "
+"login to any MySQL server. If you feel this is necessary, use %strusted "
+"proxies list%s. However, IP-based protection may not be reliable if your IP "
+"belongs to an ISP where thousands of users, including you, are connected to."
#: setup/lib/index.lib.php:296
-#, php-format
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."
+"You didn't have blowfish secret set and have enabled cookie authentication, "
+"so a key was automatically generated for you. It is used to encrypt cookies; "
+"you don't need to remember it."
msgstr ""
-"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."
+"You didn't have blowfish secret set and have enabled cookie authentication, "
+"so a key was automatically generated for you. It is used to encrypt cookies; "
+"you don't need to remember it."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
-"If you feel this is necessary, use additional protection settings - %shost "
-"authentication%s settings and %strusted proxies list%s. However, IP-based "
-"protection may not be reliable if your IP belongs to an ISP where thousands "
-"of users, including you, are connected to."
+"%sBzip2 compression and decompression%s requires functions (%s) which are "
+"unavailable on this system."
msgstr ""
-"If you feel this is necessary, use additional protection settings - %shost "
-"authentication%s settings and %strusted proxies list%s. However, IP-based "
-"protection may not be reliable if your IP belongs to an ISP where thousands "
-"of users, including you, are connected to."
+"%sBzip2 compression and decompression%s requires functions (%s) which are "
+"unavailable on this system."
+
+#: setup/lib/index.lib.php:299
+msgid ""
+"This value should be double checked to ensure that this directory is neither "
+"world accessible nor readable or writable by other users on your server."
+msgstr ""
+"This value should be double checked to ensure that this directory is neither "
+"world accessible nor readable or writable by other users on your server."
#: setup/lib/index.lib.php:300
#, php-format
-msgid ""
-"You set the [kbd]config[/kbd] authentication type and included username and "
-"password for auto-login, which is not a desirable option for live hosts. "
-"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
-"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
-"http[/kbd]."
-msgstr ""
-"You set the [kbd]config[/kbd] authentication type and included username and "
-"password for auto-login, which is not a desirable option for live hosts. "
-"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
-"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
-"http[/kbd]."
+msgid "This %soption%s should be enabled if your web server supports it."
+msgstr "This %soption%s should be enabled if your web server supports it."
#: setup/lib/index.lib.php:302
#, php-format
msgid ""
+"%sGZip compression and decompression%s requires functions (%s) which are "
+"unavailable on this system."
+msgstr ""
+"%sGZip compression and decompression%s requires functions (%s) which are "
+"unavailable on this system."
+
+#: setup/lib/index.lib.php:304
+#, php-format
+msgid ""
+"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
+"invalidation if %ssession.gc_maxlifetime%s is lower than its value "
+"(currently %d)."
+msgstr ""
+"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
+"invalidation if %ssession.gc_maxlifetime%s is lower than its value "
+"(currently %d)."
+
+#: setup/lib/index.lib.php:306
+#, php-format
+msgid ""
+"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
+"most. Values larger than 1800 may pose a security risk such as impersonation."
+msgstr ""
+"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
+"most. Values larger than 1800 may pose a security risk such as impersonation."
+
+#: setup/lib/index.lib.php:308
+#, php-format
+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 ""
+"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."
+
+#: setup/lib/index.lib.php:310
+#, php-format
+msgid ""
+"If you feel this is necessary, use additional protection settings - %shost "
+"authentication%s settings and %strusted proxies list%s. However, IP-based "
+"protection may not be reliable if your IP belongs to an ISP where thousands "
+"of users, including you, are connected to."
+msgstr ""
+"If you feel this is necessary, use additional protection settings - %shost "
+"authentication%s settings and %strusted proxies list%s. However, IP-based "
+"protection may not be reliable if your IP belongs to an ISP where thousands "
+"of users, including you, are connected to."
+
+#: setup/lib/index.lib.php:312
+#, php-format
+msgid ""
+"You set the [kbd]config[/kbd] authentication type and included username and "
+"password for auto-login, which is not a desirable option for live hosts. "
+"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
+"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
+"http[/kbd]."
+msgstr ""
+"You set the [kbd]config[/kbd] authentication type and included username and "
+"password for auto-login, which is not a desirable option for live hosts. "
+"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
+"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
+"http[/kbd]."
+
+#: setup/lib/index.lib.php:314
+#, php-format
+msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11477,23 +11498,23 @@ msgstr ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "You should use SSL connections if your database server supports it."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "You should use mysqli for performance reasons."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "You allow for connecting to the server without a password."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Key is too short, it should have at least 8 characters."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Key should contain letters, numbers [em]and[/em] special characters."
@@ -11501,8 +11522,8 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters."
msgid "Wrong data"
msgstr "Wrong data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Browse foreign values"
@@ -11532,25 +11553,31 @@ msgstr "Showing SQL query"
msgid "Validated SQL"
msgstr "Validated SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL result"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generated by"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Label"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Table %1$s has been altered successfully"
-#: tbl_alter.php:131
-#, fuzzy
-#| msgid "The selected users have been deleted successfully."
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
-msgstr "The selected users have been deleted successfully."
+msgstr "The columns have been moved successfully."
#: tbl_change.php:745
msgid "Because of its length, this column might not be editable"
@@ -11665,7 +11692,7 @@ msgstr "Y Values"
msgid "Table %s already exists!"
msgstr "Table %s already exists!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Table %1$s has been created."
@@ -11865,43 +11892,43 @@ msgstr "Remove partitioning"
msgid "Check referential integrity:"
msgstr "Check referential integrity:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Showing tables"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Space usage"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Usage"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effective"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Row Statistics"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "static"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamic"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Row length"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Row size"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Next autoindex"
@@ -11951,10 +11978,8 @@ msgid "Spatial"
msgstr "Spatial"
#: tbl_structure.php:158 tbl_structure.php:162
-#, fuzzy
-#| msgid "Browse distinct values"
msgid "Distinct values"
-msgstr "Browse distinct values"
+msgstr "Distinct values"
#: tbl_structure.php:163 tbl_structure.php:164
msgid "Add primary key"
@@ -11999,14 +12024,12 @@ msgid "Show more actions"
msgstr "Show more actions"
#: tbl_structure.php:621 tbl_structure.php:686
-#, fuzzy
-#| msgid "Remove column(s)"
msgid "Move columns"
-msgstr "Remove column(s)"
+msgstr "Move columns"
#: tbl_structure.php:622
msgid "Move the columns by dragging them up and down."
-msgstr ""
+msgstr "Move the columns by dragging them up and down."
#: tbl_structure.php:648
msgid "Edit view"
@@ -12192,27 +12215,27 @@ msgstr "Track these data manipulation statements:"
msgid "Create version"
msgstr "Create version"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Do a \"query by example\" (wildcard: \"%\") for two different columns"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Additional search criteria"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Use this column to label each point"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Maximum rows to plot"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Browse/Edit the points"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "How to use"
diff --git a/po/es.po b/po/es.po
index 8c048466a7..8b0bf80208 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-10 16:50+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 16:58+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
"Language: es\n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Mostrar todo"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Número de página:"
@@ -39,30 +39,30 @@ msgstr ""
"múltiples debido a sus parámetros de seguridad."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Buscar"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Buscar"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Continuar"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Comentario de la base de datos: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Comentarios de la tabla"
@@ -124,14 +124,14 @@ msgstr "Comentarios de la tabla"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Columna"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Columna"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -156,9 +156,9 @@ msgstr "Tipo"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulo"
@@ -168,7 +168,7 @@ msgstr "Nulo"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Predeterminado"
@@ -177,18 +177,18 @@ msgstr "Predeterminado"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Enlaces a"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Comentarios"
@@ -199,11 +199,11 @@ msgstr "Comentarios"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "No"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Sí"
msgid "View dump (schema) of database"
msgstr "Ver el volcado (esquema) de la base de datos"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "No se han encontrado tablas en la base de datos."
@@ -322,8 +322,8 @@ msgstr "Seleccionar la base de datos copiada"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Editar o exportar esquema relacional"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,47 +354,46 @@ msgstr "Editar o exportar esquema relacional"
msgid "Table"
msgstr "Tabla"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Filas"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Tamaño"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "en uso"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Creación"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Última actualización"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Última revisión"
# singular: tabla
# plural: tablas
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "Usar tablas"
msgid "SQL query on database %s :"
msgstr "Consulta a la base de datos %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Ejecutar la consulta"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Acceso denegado"
@@ -525,8 +524,8 @@ msgstr[0] "%1$s coincidencia en la tabla %2$s "
msgstr[1] "%1$s coincidencias en la tabla %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Examinar"
@@ -602,11 +601,11 @@ msgstr "Se descartó el modo de visualización %s"
msgid "Table %s has been dropped"
msgstr "Se ha eliminado la tabla %s"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "El seguimiento está activo."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "El seguimiento no está activo."
@@ -620,7 +619,7 @@ msgstr ""
"%sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Visualizar"
@@ -666,7 +665,7 @@ msgstr "Marcar las tablas con residuo a depurar"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -675,17 +674,18 @@ msgid "Export"
msgstr "Exportar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Vista de impresión"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Vaciar"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -728,15 +728,14 @@ msgid "Tracked tables"
msgstr "Tablas con seguimiento"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Base de datos"
@@ -754,7 +753,7 @@ msgstr "Actualizado"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Estado actual"
@@ -948,13 +947,13 @@ msgstr "Mostrando el favorito"
msgid "The bookmark has been deleted."
msgstr "El favorito ha sido borrado."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "No fue posible leer el archivo"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -986,7 +985,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"No se pudieron cargar los plugins de importación. ¡Revise su instalación!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "El favorito %s fue creado"
@@ -1013,8 +1012,8 @@ msgstr ""
"usualmente significa que phpMyAdmin no será capaz de completar esta "
"importación a menos que usted incremente el tiempo de ejecución de php."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1123,9 +1122,9 @@ msgid "Close"
msgstr "Cerrar"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Editar"
@@ -1149,7 +1148,7 @@ msgstr "Datos estáticos"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1160,12 +1159,12 @@ msgid "Other"
msgstr "Otro"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1249,13 +1248,13 @@ msgid "System swap"
msgstr "Intercambio de sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1313,27 +1312,27 @@ msgid "Connections"
msgstr "Conexiones"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1376,9 +1375,9 @@ msgstr "Por favor agregue al menos una variable a la serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Ninguna"
@@ -1565,7 +1564,7 @@ msgstr "Explicar salida"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tiempo"
@@ -1877,7 +1876,7 @@ msgstr "%d no es un número de fila válido."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1891,7 +1890,7 @@ msgstr "Ocultar criterio de búsqueda"
msgid "Show search criteria"
msgstr "Mostrar criterio de búsqueda"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Búsqueda gráfica"
@@ -2071,7 +2070,7 @@ msgstr "Cambar contraseña"
msgid "More"
msgstr "Más"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2158,63 +2157,63 @@ msgid "December"
msgstr "Diciembre"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dic"
@@ -2252,32 +2251,32 @@ msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sab"
@@ -2422,11 +2421,11 @@ msgstr ""
"Permisos incorrectos en el archivo de configuración ¡cualquiera no debería "
"poder modificarlo!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Tamaño de fuente"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Demasiados mensajes de error, algunos no son mostrados."
@@ -2434,13 +2433,13 @@ msgstr "Demasiados mensajes de error, algunos no son mostrados."
msgid "File was not an uploaded file."
msgstr "El archivo no era un archivo subido."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"El archivo que intentó subir excede la directiva upload_max_filesize en php."
"ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2448,27 +2447,27 @@ msgstr ""
"El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada "
"en el formulario HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "El archivo que intentó subir no alcanzó el 100%."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Falta una carpeta temporal."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "No fue posible grabar el archivo a disco."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "La subida del archivo fue detenida por extensión."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Error desconocido al subir el archivo."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2476,11 +2475,11 @@ msgstr ""
"Se detectó un error al mover el archivo subido, ver [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Error al mover el archivo subido."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "No se puede leer el archivo subido (y movido)."
@@ -2494,7 +2493,7 @@ msgstr "¡No se ha definido ningún índice!"
msgid "Indexes"
msgstr "Índices"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2532,46 +2531,46 @@ msgstr ""
"Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar "
"uno."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Bases de datos"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Estructura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insertar"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operaciones"
@@ -2650,27 +2649,27 @@ msgstr "Complementos"
msgid "Engines"
msgstr "Motores"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Error"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d fila afectada."
msgstr[1] "%1$d filas afectadas."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d fila eliminada."
msgstr[1] "%1$d filas eliminadas."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2716,43 +2715,43 @@ msgid "This MySQL server does not support the %s storage engine."
msgstr ""
"Este servidor MySQL no es compatible con el motor de almacenamiento %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "estado de tabla desconocido: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "¡No se encontró la base de datos de origen «%s»!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "¡No se encontró la base de datos de destino «%s»!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "La base de datos no es válida"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "El nombre de la tabla no es válido"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "La tabla %1$s ahora se llama %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "No se pudieron guardar las preferencias de interfaz"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2761,7 +2760,7 @@ msgstr ""
"Falló la limpieza de las preferencia de interfaz de tablas (ver $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2772,16 +2771,16 @@ msgstr ""
"no serán persistentes luego de actualizar esta página. Revise si cambió la "
"estructura de la tabla."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "¡No se encontró la ruta de imágenes para el tema %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "No existe una previsualización disponible."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "tómelo"
@@ -2843,7 +2842,7 @@ msgstr ""
"En entero de 8 bytes; el rango con signo es de -9223372036854775808 a "
"9223372036854775807, el rango sin signo es de 0 a 18446744073709551615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2898,12 +2897,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Un sinónimo de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2919,7 +2918,7 @@ msgstr ""
"03:14:07» UTC almacenados como la cantidad de segundos desde el «epoch» («01-"
"Ene-1970 00:00:00» UTC)"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Una marca temporal, el rango es de «%1$s» a «%2$s»"
@@ -2942,7 +2941,7 @@ msgstr ""
"siempre completada a la derecha con espacios hasta la longitud especificada "
"al ser almacenada"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2959,7 +2958,7 @@ msgstr ""
"Una columna de texto con una longitud máxima de 255 (2^8 - 1) caracteres, "
"almacenado con un prefijo de 1 byte que indica la longitud del valor en bytes"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3083,34 +3082,31 @@ msgstr "Una colección de polígonos"
msgid "A collection of geometry objects of any type"
msgstr "Una colección de objetos geométricos de cualquier tipo"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "Numérico"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Both date and time."
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Fecha y marca temporal"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "Cadena"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Espacial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "Un entero de 4 bytes, el rango es de -2147483648 a 2147483647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3118,24 +3114,24 @@ msgstr ""
"En entero de 8 bytes, el rango es de -9223372036854775808 a "
"9223372036854775807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
"El número de coma flotante de doble precisión predeterminado del sistema"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "Verdadero o falso"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Un sinónimo de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Almacena indentificadores únicos universales («UUID»)"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
@@ -3143,7 +3139,7 @@ msgstr ""
"Una marca temporal, el rango es de «01-Ene-0001 00:00:00» UTC a «31-Dic-9999 "
"23:59:59» UTC; TIMESTAMP(6) puede almacena microsegundos"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@@ -3151,7 +3147,7 @@ msgstr ""
"Una cadena de longitud variable (0-65535) que utiliza cotejamiento binario "
"para las comparaciones"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
@@ -3160,7 +3156,7 @@ msgstr ""
"(2^16 - 1) bytes, almacenado con un prefijo de 4 bytes que indica la "
"longitud del valor"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "Una enumeración, elegida de una lista de valores definidos"
@@ -3234,7 +3230,7 @@ msgstr "Elección del servidor"
msgid "Cookies must be enabled past this point."
msgstr "Las cookies deben estar activadas."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3242,7 +3238,7 @@ msgstr ""
"El inicio de sesión sin contraseña está prohibido por la configuración (ver "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3250,8 +3246,8 @@ msgstr ""
"No ha habido actividad desde hace %s o más segundos, por favor reingrese al "
"sitio"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "El servidor MySQL no autorizó su ingreso"
@@ -3296,18 +3292,18 @@ msgstr "Tablas"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Datos"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Residuo a depurar"
@@ -3416,8 +3412,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "es"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "consulta SQL"
@@ -3427,146 +3423,146 @@ msgstr "consulta SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL ha dicho: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "No pudo conectarse a un validador de SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Omitir la explicación del SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Sin código PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Crear código PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Actualizar"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Saltar la validación de SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validar SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Edición en linea de esta consulta"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "En línea"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Perfilando"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a las %H:%M:%S"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos y %s segundos"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Parámetro faltante:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Comenzar"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Siguiente"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar a la base de datos "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Pulse para conmutar"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Buscar en su ordenador:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
"Seleccionar directorio en el servidor web para subir los archivos %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"No se puede acceder al directorio que seleccionó para subir los archivos"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "No hay archivos para subir"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Ejecutar"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Imprimir"
@@ -3655,68 +3651,68 @@ msgstr "todo lo anterior"
msgid "neither of the above"
msgstr "ninguno de los anteriores"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "No es un número positivo"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "No es un número no-negativo"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "No es un número de puerto válido"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Valor incorrecto"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "El valor debe ser igual o menor que %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Faltan datos para %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "no disponible"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" requiere la extensión %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "la importación no funcionará, falta una función (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "la exportación no funcionará, falta una función (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "El validador de SQL está desactivado"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "extensión SOAP no encontrada"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "máximo %s"
@@ -3735,7 +3731,7 @@ msgid "Set value: %s"
msgstr "Valor establecido: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Restaurar valor predeterminado"
@@ -4042,7 +4038,7 @@ msgid "Character set of the file"
msgstr "Conjunto de caracteres del archivo"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formato"
@@ -4143,7 +4139,7 @@ msgstr "Clave de la etiqueta"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-type"
@@ -4270,8 +4266,8 @@ msgstr "Personalizar las opciones predeteminadas"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4711,14 +4707,21 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Número mínimo de tablas a mostrar en la ventana de filtro de tabla"
#: libraries/config/messages.inc.php:281
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr ""
+"Número mínimo de bases de datos a mostrar en la ventana de filtro de bases "
+"de datos"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Cadena que separa bases de datos en diferentes niveles de árbol"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Separador de árbol de base de datos"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4726,39 +4729,39 @@ msgstr ""
"Solamente la versión ligera; mostrar las bases de datos en un árbol "
"(determinado por el separador definido abajo)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Mostrar las bases de datos en un árbol"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Deshabilite esto si quiere ver todas las bases de datos a la vez"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Use la versión clara"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Profundidad máxima del árbol de tablas"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Cadena que separa tablas en diferentes niveles de árbol"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Separador de árbol de tablas"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL a la que apuntará el logotipo del cuadro de navegación"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL para enlace del logo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4766,38 +4769,38 @@ msgstr ""
"Abrir la página enlazada en la ventana principal ([kbd]principal[/kbd]) o en "
"una nueva ([kbd]nueva[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Objetivo para enlace del logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Resaltar servidor bajo el cursor"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Permitir destacar"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Número máximo de tablas recientemente utilizadas; 0 para desactivar"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Tablas recientemente utilizadas"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Cantidad máxima de caracteres a mostrar en un campo no-numérico en vista de "
"navegación"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Límite de caracteres de la columna"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4809,11 +4812,11 @@ msgstr ""
"que debe finalizar sesión de otros servidores cuando se conecta a múltiples "
"servidores."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Eliminar todas las cookies al finalizar sesión"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4821,11 +4824,11 @@ msgstr ""
"Define si el inicio de sesión anterior se debe recordar o no en la modalidad "
"autenticación mediante cookie"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Recordar el nombre del usuario"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4837,52 +4840,52 @@ msgstr ""
"para la sesión actual y se borrará tan pronto cierre la ventana del "
"navegador. Esto es recomendable para entornos no confiables."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Almacenamiento de cookies de inicio de sesión"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
"Define por cuánto tiempo (en segundos) es válido un cookie de inicio de "
"sesión"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Validez del cookie usado para el inicio de sesión"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Doble tamaño del textarea para las columnas LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "textarea más grande para LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Número máximo de caracteres usados al mostrar una consulta SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Máxima longitud al mostrar consulta SQL"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Los usuarios no pueden definir un valor más alto"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Número máximo de bases de datos visibles en la columna izquierda y en el "
"listado de bases de datos"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Número máximo de bases de datos"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4892,19 +4895,19 @@ msgstr ""
"juego de resultados contiene más filas, aparecerán enlaces ""
"Anterior" y "Siguiente"."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Máximo número de filas a mostrar"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Número máximo de tablas mostradas en una lista de tablas"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Número máximo de tablas"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4912,11 +4915,11 @@ msgstr ""
"Desactivar advertencia predeterminada que se muestra si no se encuentra "
"mcrypt para la cookie de autenticación"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "advertencia mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4924,44 +4927,44 @@ msgstr ""
"El número de bytes que un script puede reservar. ej. [kbd]32M[/kbd] ([kbd]0[/"
"kbd] para ilimitado)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Límite de la memoria"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Estos son los enlaces para Editar, Copiar y Borrar"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Donde mostrar los enlaces de filas de tabla"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Utilizar orden natural para ordenar nombres de tablas y bases de datos"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Orden natural"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Use solamente íconos, solamente texto o ambos"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Barra de navegación mediante íconos"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"Utilizar búfer en salida de GZip para mayor velocidad en transferencias HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Buffer de salida de GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4969,19 +4972,19 @@ msgstr ""
"[kbd]SMART[/kbd] - es decir: orden descendente para columnas de tipo TIME, "
"DATE, DATETIME y TIMESTAMP, ascendente en los demás casos"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Orden de despliegue predeterminado"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Use conexiones persistentes para las bases de datos MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Conexiones persistentes"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4991,23 +4994,23 @@ msgstr ""
"de los detalles de la base de datos si alguna de las tablas requeridas por "
"phpMyAdmin no pudo ser encontrada en el almacenamiento de configuración"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Faltan las tablas de almacenaje de configuración de phpMyAdmin"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Operaciones de las tablas mediante íconos"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "No permitir la edición de columnas BLOB y BINARIAS"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Proteger los campos binarios"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -5018,117 +5021,117 @@ msgstr ""
"rutinas JavaScript para mostrar el histórico de consultas (olvidado al "
"cerrar la ventana)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Histórico permanente de consultas"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Cuántas consultas se guardan en el histórico"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Longitud del histórico de consultas"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "La ceja se muestra cuando abre una nueva ventana de consulta"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Ceja predetermnada para la ventana de consulta"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Altura (en pixels) de la ventana de consultas"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Altura de ventana de consulta"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Anchura de ventana de consulta (en píxeles)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Anchura de ventana de consulta"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Seleccione cuáles funciones se usarán para la conversión del conjunto de "
"caracteres"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Motor de recodificación"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Al explorar tablas, se recordará el ordenamiento de cada tabla"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Recordar ordenamiento de la tabla"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Repetir cabecera cada X celdas, [kbd]0[/kbd] desactiva esta funcionalidad"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Repetir cabeceras"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Guardar todas las celdas editadas simultáneamente"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
"Directorio donde los archivos exportados se pueden guardar en el servidor"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Directorio de almacenamiento"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Deje en blanco si no necesita usarlo"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Orden en que se autentica el Host"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Deje en blanco para usar los valores predeterminados"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Reglas de autorización del Host"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Permitir inicio de sesión sin contraseña"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Permitir el inicio de sesión como root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
"Nombre a mostrar como dominio (HTTP Basic Auth Realm) durante la "
"autenticación HTTP"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Dominio HTTP (Realm)"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5138,19 +5141,19 @@ msgstr ""
"dispositivo SweKey[/a] (no localizado en su raíz de documentos; valor "
"sugerido: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Archivo de configuración SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Método de autenticación a usar"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Tipo de autenticación"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5158,11 +5161,11 @@ msgstr ""
"Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/bookmark]"
"bookmark[/a], de manera predeterminada: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Agregar tabla a favoritos"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5170,33 +5173,33 @@ msgstr ""
"Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabla con información de la columna"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Conexión de compresión con el servidor SQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Conexión de compresión"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Cómo conectar con el servidor, mantenga el valor [kbd]tcp[/kbd] en caso de "
"no estar seguro"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Tipo de conexión"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Controlar la contraseña del usuario"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5204,11 +5207,11 @@ msgstr ""
"Un usuario MySQL especial configurado con permisos limitados, más "
"información disponible en [a@http://wiki.cihar.com/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Controlar al usuario"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5216,19 +5219,19 @@ msgstr ""
"Alternativa para guardar el almacenamiento de configuración; deje vacío para "
"utilizar el ya definido"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Anfitrión de control"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Contar las tablas cuando muestra el listado de las bases de datos"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Contar las tablas"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5236,11 +5239,11 @@ msgstr ""
"Dejar en blanco para evitar el soporte de diseñador, sugerido: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabla del diseñador"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5248,30 +5251,30 @@ msgstr ""
"Más información en [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] y [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Deshabilitar el uso de INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Cuál extensión PHP debe usar; usted debe usar mysqli si su sistema lo permite"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "extensión PHP para usar"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
"Ocultar las bases de datos que cumplen con los criterios de las expresiones "
"regulares (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Ocultar las bases de datos"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5279,23 +5282,23 @@ msgstr ""
"Dejar en blanco para evitar soporte de histórico de consultas SQL, sugerido: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabla de histórico de consultas SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Descripción del servidor"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Nombre del servidor"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL de fin de sesión"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5303,19 +5306,19 @@ msgstr ""
"Limita la cantidad de preferencias sobre tablas que serán almacenadas en la "
"base de datos, las más antiguas serán eliminadas automáticamente"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Número máximo de preferencias sobre tablas a almacenar"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Intente conectar sin contraseña"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Conecte sin contraseña"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5329,30 +5332,30 @@ msgstr ""
"bases de datos, sólo ingrese sus nombres en orden y utilice [kbd]*[/kbd] al "
"final para mostrar las restantes en orden alfabético."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Muestre solamente las bases de datos listadas"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Deje vacío si no está usando config auth"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Contraseña para config auth"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Dejar en blanco para evitar soporte para esquema en PDF, sugerido: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "Esquema de PDF: tabla de páginas"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5363,21 +5366,21 @@ msgstr ""
"completa. Deje en blanco para que no exita soporte. Predeterminado: [kbd]"
"phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Nombre de la base de datos"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"El puerto al cual ha sido asociado el servidor MySQL, deje vacío para usar "
"el predeterminado"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Puerto del servidor"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5385,11 +5388,11 @@ msgstr ""
"Deje en blanco para eliminar la \"persistencia\" de las tablas recientemente "
"utilizadas entre sesiones, valor sugerido: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Tabla recientemente utilizada"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5397,19 +5400,19 @@ msgstr ""
"Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/relation]"
"relation-links[/a], de manera predeterminada: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Tabla de relaciones"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Comando SQL para llamar las bases de datos disponibles"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Comando SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5417,44 +5420,44 @@ msgstr ""
"Ver [a@http://wiki.cihar.com/pma/auth_types#signon]tipos de autenticación[/"
"a] para conocer un ejemplo"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Nombre de la sesión al signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL de signon"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"El puerto escuchado por el servidor MySQL, deje vacío para usar los valores "
"predeterminados"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Puerto del servidor"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Habilitar SSL para conexión con el servidor SQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Usar SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Dejar en blanco para evitar soporte de esquema en PDF, sugerido: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Esquema en PDF: tabla de coordenadas"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5462,11 +5465,11 @@ msgstr ""
"Tabla para describir la presentación de las celdas, deje en blanco para "
"quitar soporte, sugerido: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Mostrar tabla de columnas"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5475,11 +5478,11 @@ msgstr ""
"interfaz de tablas entre sesiones, valor sugerido : [kbd]pma_table_uiprefs[/"
"kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Preferencias de interfaz de tablas"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5487,11 +5490,11 @@ msgstr ""
"Si se incluye la sentencia DROP DATABASE IF EXISTS como primera línea del "
"registro al crear una base de datos o no."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Agregar DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5499,11 +5502,11 @@ msgstr ""
"Si se incluye la sentencia DROP TABLE IF EXISTS como primera línea del "
"registro al crear una tabla."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Agregar DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5511,21 +5514,21 @@ msgstr ""
"Si se incluye la sentencia DROP VIEW IF EXISTS como primera línea del "
"registro al crear una vista."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Agregar DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definir la lista de sentencias que la creación automática usa para nuevas "
"versiones."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Sentencias a hacer seguimiento"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5533,11 +5536,11 @@ msgstr ""
"Deje en blanco para eliminar soporte de seguimiento de consultas SQL, valor "
"sugerido: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabla de seguimiento de consultas SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5545,11 +5548,11 @@ msgstr ""
"Si el mecanismo de seguimiento crea versiones para tablas y vistas "
"automáticamente o no."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Crear versiones automáticamente"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5557,35 +5560,35 @@ msgstr ""
"Deje en blanco para evitar el almacenamiento de preferencias en la base de "
"datos, valor sugerido : [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabla de almacenamiento de preferencias de usuario"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Usuario para config auth"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "Nombre del servidor donde el servidor SQL se está ejecutando."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Nombre del servidor, forma extendida"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Si el usuario puede ver un botón "mostrar todos (los registros)" o "
"no"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Permitir que se muestren todas las filas"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5595,47 +5598,47 @@ msgstr ""
"debido a que la contraseña está incluída en el archivo de configuración; "
"esto no limita la capacidad de ejecutar la misma orden directamente"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Mostrar el formulario para cambio de contraseña"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Mostrar el formulario para crear una base de datos"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Mostrar o esconder una columna con las marcas temporales de creación para "
"todas las tablas"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Mostrar marca temporal de creación"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Mostrar o esconder una columna con la marca temporal de la última "
"actualización para todas las tablas"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Mostrar marca temporal de última actualización"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Mostrar o esconder una columna con la marca temporal de la última revisión "
"para todas las tablas"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Mostrar marca temporal de última revisión"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5643,11 +5646,11 @@ msgstr ""
"Define si se muestra la opción sobre el tipo de dirección de la "
"visualización al examinar una tabla"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Mostrar dirección de visualización"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5655,27 +5658,27 @@ msgstr ""
"Si inicialmente se muestran los campos de tipo en el modo de edición/"
"inserción o no"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Mostrar tipo de campos"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Mostrar campos de función en el modo de edición/inserción"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Mostrar los campos de función"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Si mostrar ayudas o no"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Mostrar ayudas"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5683,42 +5686,42 @@ msgstr ""
"Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Mostrar el enlace phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Mostrar información detallada acerca del servidor SQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Define si los enunciados SQL generados por phpMyAdmin se deben mostrar"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Mostrar las consultas SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "Define si la consulta se mostrará aún después de enviar el formulario"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Mantener la caja de texto con la consulta"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Permitir mostrar estadísiticas de base de datos y tablas (por ejemplo uso de "
"espacio)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Mostrar estadísticas"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5726,11 +5729,11 @@ msgstr ""
"Si los consejos están habilitados y hay un comentario de base de datos "
"definido, esto intercambiará el comentario y nombre real"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Mostrar el comentario de la tabla en lugar de su nombre"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5742,30 +5745,30 @@ msgstr ""
"['LeftFrameTableSeparator'], de forma que sólo la carpeta sea llamada como "
"el alias, el nombre de la tabla en sí mismo permanece intacto"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Mostrar el comentario de la tabla en lugar de su nombre"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Mostrar los comentarios de las tablas en los tooltips"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Marcar tablas usadas y hacer posible el mostrar bases de datos con tablas "
"bloqueadas"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Saltarse las tablas bloqueadas"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Requiere que el Validador SQL esté habilitado"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5775,7 +5778,7 @@ msgstr "Requiere que el Validador SQL esté habilitado"
msgid "Password"
msgstr "Contraseña"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5783,11 +5786,11 @@ msgstr ""
"[strong]Advertencia:[/strong] necesita extensión PHP SOAP o PEAR SOAP "
"instalada"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Habilitar Validador SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5795,20 +5798,20 @@ msgstr ""
"Si se posee un nombre de usuario propio, especifícalo aquí (valor por "
"defecto: [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Nombre de usuario"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Mostrar advertencia en la página principal si se detecta Suhosin"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Advertencia Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5817,12 +5820,12 @@ msgstr ""
"será aumentado en áreas de texto para consultas SQL (x2) y en la venta de "
"consultas (x1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Columnas para las áreas de texto"
# See translation string 813
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5831,31 +5834,31 @@ msgstr ""
"aumentado en áreas de texto para consultas SQL (x2) y en la venta de "
"consultas (x1,25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Filas para áreas de texto"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Título de la ventana al seleccionar una base de datos"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Título de la ventana cuando no hay nada seleccionado"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Título predeterminado"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Título de la ventana cuando se ha seleccionado un servidor"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Título de la ventana cuando se ha seleccionado un tabla"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5867,27 +5870,27 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente del proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Listado de proxies de confianza para autorización/bloqueo de IP"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Directorio en el servidor donde puede subir archivos para importar"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Directorio desde donde se cargarán los archivos"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Permite hacer una búsqueda dentro de toda la base de datos"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Use búsquedas en la base de datos"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5896,29 +5899,29 @@ msgstr ""
"opciones situadas más abajo, sin importar la casilla de la derecha"
# see translation string 529
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Habilitar la pestaña Desarrolladores en la configuración"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Buscar si existe una versión más reciente"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Habilita la verificación de la última versión en la página principal de "
"phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Revise la versión"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5926,7 +5929,7 @@ msgstr ""
"Habilite la compresión [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP"
"[/a] para las operaciones de importación y exportación"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5949,89 +5952,89 @@ msgid "Signon authentication"
msgstr "Autenticación por sesión"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV usando LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Hoja de cálculo Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Rápido"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Personalizado"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opciones de exportación de la base de datos"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV para datos de MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Texto Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "No se pudo inicializar la biblioteca de conexión Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "No se pudo conectar con un servidor Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "No pudo conectarse con un servidor MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"El nombre de usuario está vacío e intentó usar el método de autenticación "
"config"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"El nombre de sesión al signon está vacío mientras usó el método de "
"autenticación signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"El URL de sesión al signon está vacío mientras usó el método de "
"autenticación signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "El usuario control phpMyAdmin está vacío mientras usó pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"La contraseña para usuario control phpMyAdmin está vacía mientras usó pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "La dirección IP es incorrecta: %s"
@@ -6051,7 +6054,7 @@ msgstr "No se encontró la extensión %s. Por favor revisa la configuración PHP
msgid "possible deep recursion attack"
msgstr "posible ataque de recursión extrema"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6059,15 +6062,15 @@ msgstr ""
"El servidor no está respondiendo (o el zócalo local al servidor MySQL no "
"está configurado correctamente)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "El servidor no está respondiendo."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Revisa los permisos del directorio que contiene la base de datos."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detalles..."
@@ -6133,7 +6136,7 @@ msgstr "Crear tabla"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nombre"
@@ -6291,25 +6294,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Conversión de codificación:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s de rama %2$s"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "sin rama"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Revisión Git"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "incorporada el %1$s por %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "creada el %1$s por %2$s"
@@ -7044,18 +7047,17 @@ msgid "Display MIME types"
msgstr "Tipos MIME disponibles"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Tiempo de generación"
@@ -7278,15 +7280,7 @@ msgstr "No se encontraron datos para la visualización GIS."
msgid "GLOBALS overwrite attempt"
msgstr "intento de sobre-escritura de la variable GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Resultado SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generado por"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7390,7 +7384,7 @@ msgstr "El número de columnas de los datos CSV en la línea %d no es válido."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Nombre de la tabla"
@@ -7750,7 +7744,7 @@ msgstr "Creación de los PDF"
msgid "Displaying Column Comments"
msgstr "Mostrando los comentarios de la columna"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformación del navegador"
@@ -7856,10 +7850,10 @@ msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Valor"
@@ -7922,7 +7916,7 @@ msgstr "Generar la contraseña"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7958,8 +7952,8 @@ msgid "Edit event"
msgstr "Editar evento"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Error al procesar la petición"
@@ -8009,7 +8003,7 @@ msgstr "Preservar al completar"
msgid "Definer"
msgstr "Definidor"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "El definidor tiene que ser en el formato \"usuario@sistema\""
@@ -8067,7 +8061,7 @@ msgstr ""
"evitar problemas."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Tipo de rutina inválido: \"%s\""
@@ -8138,17 +8132,17 @@ msgstr "Tipo de seguridad"
msgid "SQL data access"
msgstr "Acceso de datos SQL"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Debe proveer un nombre de rutina"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Dirección \"%s\" inválida provista para el parámetro."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8156,41 +8150,41 @@ msgstr ""
"Debe proveer longitud/valores para los parámetros de tipo ENUM, SET, VARCHAR "
"y VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Debe proveer un nombre y tipo para cada parámetro de rutina."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Debe proveer un tipo de retorno válido para la rutina."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Debe proveer una definición de rutina."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d fila afectada por la última sentencia del procedimiento"
msgstr[1] "%d filas afectadas por la última sentencia del procedimiento"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Resultados de la ejecución de la rutina %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Ejecutar rutina"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Parámetros de rutina"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Función"
@@ -8366,7 +8360,7 @@ msgstr "Tabla de contenidos"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributos"
@@ -8465,12 +8459,12 @@ msgid "Toggle scratchboard"
msgstr "cambiar el estado del scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Idioma desconocido: %1$s."
@@ -8516,7 +8510,7 @@ msgstr "Ejecute la o las consultas SQL en el servidor %s"
msgid "Run SQL query/queries on database %s"
msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Limpiar"
@@ -8525,11 +8519,11 @@ msgstr "Limpiar"
msgid "Columns"
msgstr "Columnas"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Guardar esta consulta en favoritos"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Permitir que todo usuario pueda acceder a este favorito"
@@ -8631,12 +8625,12 @@ msgstr ""
"El validador de SQL no pudo inicializarse. Por favor revise si ha instalado "
"las extensiones php necesarias, como están descritas en la %sdocumentación%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Seguimiento de %s activado."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8648,7 +8642,7 @@ msgstr ""
"invertida (\"\\\") o una comilla simple (\"'\") entre esos valores, añada "
"una barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8656,17 +8650,17 @@ msgstr ""
"Para valores predeterminados, introduzca sólamente un valor sin caracteres "
"de escape ni comillas, usando este formato: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Índice"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Mover columna"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8676,11 +8670,11 @@ msgstr ""
"transformaciones MIME-type transformations, dé clic en %stransformation "
"descriptions%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opciones de transformación"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8692,73 +8686,73 @@ msgstr ""
"invertida (\"\\\") o comilla sencilla (\"'\") entre esos valores, añada una "
"barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "¿Datos ENUM o SET demasiado largos?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Obtener más espacio de edición"
# Corresponds to NONE option for default value of a TIMESTAMP field
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Ninguno"
# Corresponds to user-defined option for default value of a TIMESTAMP field
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Personalizado:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primaria"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Texto completo"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "primera"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "después de %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Agregar %s columna(s)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Debe agregar al menos una columna."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Motor de almacenamiento"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "definición de la PARTICIÓN"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operador"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Búsqueda de tablas"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Editar/Insertar"
@@ -8932,11 +8926,11 @@ msgstr ""
"Las preferencias serán guardadas sólo para la sesión actual. Almacenarlas "
"permanentemente necesita de %salmacenamiento de configuración phpMyAdmin%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "No se pudo guardar la configuración"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8948,8 +8942,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "¡No se hallaron archivos dentro del archivo ZIP!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Error en el archivo ZIP:"
@@ -9131,16 +9125,21 @@ msgstr ""
msgid "No databases"
msgstr "No hay bases de datos"
-#: navigation.php:261
+#: navigation.php:209
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtrar bases de datos por nombre"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtrar tablas por nombre"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Crear tabla"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Seleccionar una base de datos"
@@ -10318,7 +10317,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Preguntas desde el inicio: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Sentencias"
@@ -11604,13 +11603,13 @@ msgstr "Ignorar los errores"
msgid "Show form"
msgstr "Mostrar el formulario"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"No está disponible URL wrapper ni CURL. No es posible conocer la versión."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11618,15 +11617,15 @@ msgstr ""
"Fracasó la lectura de la versión. Quizá usted está desconectado o el "
"servidor de actualizaciones no está respondiendo."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "El servidor envió una cifra incorrecta para la versión"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "No se puede procesar la cifra de la versión"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11635,11 +11634,11 @@ msgstr ""
"Usted está usando versionado Git, ejecute [kbd]git pull[/kbd] :-)[br]La "
"versión estable más reciente es %s, publicada el %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "No existe una versión estable más reciente"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11653,7 +11652,7 @@ msgstr ""
"protección basada en IP podría no ser confiable si su IP pertenece a un ISP "
"al que están conectados miles de usuarios, incluyendo usted."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11663,7 +11662,7 @@ msgstr ""
"por cookie, así que una clave fue generada automáticamente. Se usa para "
"encriptar cookies; no necesita recordarla."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11672,7 +11671,7 @@ msgstr ""
"%sLa compresión y descompresión Bzip2%s requiere funciones (%s) que no están "
"disponibles en este sistema."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11681,13 +11680,13 @@ msgstr ""
"es público ni que se puede leer o escribir en él por parte de otros usuarios "
"en su servidor."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Esta %sopción%s debería estar activada si es soportada por su servidor web."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11696,7 +11695,7 @@ msgstr ""
"%sla compresión y descompresión GZip%s requiere funciones (%s) que no están "
"disponibles en este sistema."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11707,7 +11706,7 @@ msgstr ""
"causar invalidaciones de sesión aleatorias si %ssession.gc_maxlifetime%s es "
"menor que su valor (actualmente %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11717,7 +11716,7 @@ msgstr ""
"segundos (30 minutos) como máximo. Valores mayores a 1800 pueden representar "
"un riesgo a la seguridad tal como la suplantación."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11727,7 +11726,7 @@ msgstr ""
"inicio de sesión%s no es 0, la %svalidez de la cookie de inicio de sesión%s "
"debe ser definida a un valor menor o igual al mismo."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11741,7 +11740,7 @@ msgstr ""
"si su IP pertenece a un ISP al que están conectados miles de usuarios, "
"incluyendo usted."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11757,7 +11756,7 @@ msgstr ""
"phpMyAdmin. Cambie al %stipo de autenticación%s a [kbd]cookie[/kbd] o [kbd]"
"http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11766,7 +11765,7 @@ msgstr ""
"%sLa compresión Zip%s requiere funciones (%s) que no están disponibles en "
"este sistema."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11775,24 +11774,24 @@ msgstr ""
"%sLa descompresión Zip%s requiere funciones (%s) que no están disponibles en "
"este sistema."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"Debe utilizar conexiones SSL si su servidor de base de datos lo soporta."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Debe utilizar mysqli por razones de rendimiento."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Permite conectarse al servidor sin contraseña."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "La clave es muy corta, debe tener al menos 8 caracteres."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"La clave debe contener letras, números [em]y[/em] caracteres especiales."
@@ -11801,8 +11800,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Datos incorrectos"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Mostrar los valores foráneos"
@@ -11833,21 +11832,29 @@ msgstr "Mostrando la consulta SQL"
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Resultado SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generado por"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas con los índices de la tabla `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etiqueta"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Las columnas fueron movidas exitosamente."
@@ -11965,7 +11972,7 @@ msgstr "Valores Y"
msgid "Table %s already exists!"
msgstr "¡La tabla %s ya existe!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "La Tabla %1$s se creó."
@@ -12166,43 +12173,43 @@ msgstr "Remueva la partición"
msgid "Check referential integrity:"
msgstr "Comprobar la integridad referencial:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Mostrando las tablas"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Espacio utilizado"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Uso"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efectivo/a"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Estadísticas de la fila"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "estático"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinámico/a"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Longitud de la fila"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Tamaño de la fila"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Índice automático siguiente"
@@ -12491,29 +12498,29 @@ msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:"
msgid "Create version"
msgstr "Crear versión"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Hacer una \"consulta basada en ejemplo\" (comodín: \"%\") para dos columnas "
"distintas"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Criterios de búsqueda adicionales"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Utilice esta columna para etiquetar cada punto"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Máximo número de filas a graficar"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Navegar/editar los puntos"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Forma de utilización"
diff --git a/po/et.po b/po/et.po
index ffed33567a..7117f26435 100644
--- a/po/et.po
+++ b/po/et.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-12 21:12+0200\n"
"Last-Translator: LiivaneLord \n"
"Language-Team: estonian \n"
@@ -22,11 +22,11 @@ msgid "Show all"
msgstr "Näita kõiki"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Leht:"
@@ -40,30 +40,30 @@ msgstr ""
"sinu veebilehitseja turvasätted blokeerivad akna värskendamist."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Otsi"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Otsi"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Mine"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Andmebaasi kommentaar: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tabeli kommentaarid"
@@ -125,14 +125,14 @@ msgstr "Tabeli kommentaarid"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Veerg"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Veerg"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tüüp"
@@ -157,9 +157,9 @@ msgstr "Tüüp"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -169,7 +169,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Vaikimisi"
@@ -178,18 +178,18 @@ msgstr "Vaikimisi"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Viitab aadressile"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Kommentaarid"
@@ -200,11 +200,11 @@ msgstr "Kommentaarid"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "Ei"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Jah"
msgid "View dump (schema) of database"
msgstr "Vaata andmebaasi tõmmist (skeemi)"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Andmebaasist tabeleid ei leitud."
@@ -323,8 +323,8 @@ msgstr "Mine kopeeritud andmebaasile"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Muuda või ekspordi seoseskeemi"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "Muuda või ekspordi seoseskeemi"
msgid "Table"
msgstr "Tabel"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Ridu"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Suurus"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "kasutusel"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Loodud"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Viimati uuendatud"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Viimane kontroll"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -482,13 +481,13 @@ msgstr "Kasuta tabeleid"
msgid "SQL query on database %s :"
msgstr "SQL päring %s andmebaasis:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Saada päring"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Ligipääs keelatud"
@@ -522,8 +521,8 @@ msgstr[0] "%1$s vaste %2$s tabelis"
msgstr[1] "%1$s vastet %2$s tabelis"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Vaata"
@@ -599,11 +598,11 @@ msgstr "%s vaade on kustutatud"
msgid "Table %s has been dropped"
msgstr "%s tabel on kustutatud"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Jälgimine on aktiveeritud."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Jälgimist pole aktiveeritud."
@@ -616,7 +615,7 @@ msgstr ""
"Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vaade"
@@ -661,7 +660,7 @@ msgstr "Kontrolli ballastiga tabeleid"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -670,17 +669,18 @@ msgid "Export"
msgstr "Ekspordi"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Prindi vaade"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Tühjenda"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -723,15 +723,14 @@ msgid "Tracked tables"
msgstr "Jälgitud tabelid"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Andmebaas"
@@ -749,7 +748,7 @@ msgstr "Uuendatud"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Staatus"
@@ -940,13 +939,13 @@ msgstr "Näitan järjehoidjat"
msgid "The bookmark has been deleted."
msgstr "Järjehoidja on kustutatud."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Faili ei saanud lugeda"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -975,7 +974,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "%s järjehoidja on loodud"
@@ -1002,8 +1001,8 @@ msgstr ""
"phpMyAdmin ei suuda importimist lõpetada, kuni sa ei suurenda php aja "
"piiranguid."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1113,9 +1112,9 @@ msgid "Close"
msgstr "Sulge"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Muuda"
@@ -1139,7 +1138,7 @@ msgstr "Staatilised andmed"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Kokku"
@@ -1150,12 +1149,12 @@ msgid "Other"
msgstr "Muud"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1238,13 +1237,13 @@ msgid "System swap"
msgstr "Süsteemisaale"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1302,27 +1301,27 @@ msgid "Connections"
msgstr "Ühendused"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1362,9 +1361,9 @@ msgstr "Palun lisa seeriasse vähemalt üks muutuja"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Puudub"
@@ -1548,7 +1547,7 @@ msgstr "Selgita väljundit"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Aeg"
@@ -1856,7 +1855,7 @@ msgstr "%d ei ole õige reanumber."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1870,7 +1869,7 @@ msgstr "Peida otsingu kriteerium"
msgid "Show search criteria"
msgstr "Näita otsingu kriteeriumi"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Suurenda otsingut"
@@ -2044,7 +2043,7 @@ msgstr "Muuda parooli"
msgid "More"
msgstr "Rohkem"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2131,63 +2130,63 @@ msgid "December"
msgstr "Detsember"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jaan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Veebr"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Märts"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Aprill"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Juuni"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Juuli"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dets"
@@ -2225,32 +2224,32 @@ msgid "Sun"
msgstr "Püh"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Esm"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Tei"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Kol"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Nel"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Ree"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Lau"
@@ -2391,11 +2390,11 @@ msgstr ""
"Seadistusfailil on valed õigused. See ei tohiks olla kõikide jaoks "
"kirjutatav!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Fondi kõrgus"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Liiga palju veasõnumeid, mõningaid pole näha."
@@ -2403,38 +2402,38 @@ msgstr "Liiga palju veasõnumeid, mõningaid pole näha."
msgid "File was not an uploaded file."
msgstr "Fail ei olnud üleslaetud fail."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "Üleslaetud fail ületab upload_max_filesize väärtust php.ini failis."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
"Üleslaetud fail ületab MAX_FILE_SIZE väärtust, mis täpsustati HTML vormis."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Üleslaetud fail laeti üles vaid osaliselt."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Ajutine kaust puudub."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Faili salvestamine kettale ebaõnnestus."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Laiend peatas faili üleslaadimise."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Faili üleslaadimises on tundmatu viga."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2442,11 +2441,11 @@ msgstr ""
"Üleslaetud faili liigutamisel esines viga, vaata [a@./Documentation."
"html#faq1_11@Documentation]KKK 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Üleslaetud faili liigutamisel esines viga."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Ei saa lugeda (liigutatud) üleslaetud faili."
@@ -2460,7 +2459,7 @@ msgstr "Indeksit pole määratud!"
msgid "Indexes"
msgstr "Indeksid"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2498,46 +2497,46 @@ msgstr ""
"%1$s ja %2$s indeksid tunduvad olema võrdsed ja üks neist tõenäoliselt "
"kustutatakse."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Andmebaasid"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktuur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Lisa"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Tegevused"
@@ -2616,27 +2615,27 @@ msgstr "Pluginad"
msgid "Engines"
msgstr "Mootorid"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Viga"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "Mõjutati %1$d rida."
msgstr[1] "Mõjutati %1$d rida."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "Kustutati %1$d rida."
msgstr[1] "Kustutati %1$d rida."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2679,43 +2678,43 @@ msgstr "%s on keelatud selle MySQL serveri jaoks."
msgid "This MySQL server does not support the %s storage engine."
msgstr "See MySQL server ei toeta %s varundusmootorit."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "tundmatu tabeli staatus: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "Lähteandmebaasi `%s` ei leitud!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "Sihtandmebaasi `%s` ei leitud!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Vigane andmebaas"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Vigane tabeli nimi"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Esines viga %1$s tabeli ümbernimetamisel nimeks %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "%1$s tabeli uueks nimeks sai %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Tabeli UI eelistusi ei saanud salvestada"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2724,7 +2723,7 @@ msgstr ""
"Tabeli UI eelistuste puhastamine ebaõnnestus (vaata $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2734,16 +2733,16 @@ msgstr ""
"Ei saanud salvestada UI muudatust \"%s\". Muudatused ei säili, kui "
"värskendad seda lehte. Palun kontrolli, kas tabeli struktuuri on muudetud."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "%s välimusele õiget pildi asukohta ei leitud!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Eelvaade pole saadaval."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "võta see"
@@ -2804,7 +2803,7 @@ msgstr ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2858,12 +2857,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Kuupäev, sobiv ulatus on %1$s kuni %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Kuupäeva ja aja kombinatsioon, sobiv ulatus on %1$s kuni %2$s"
@@ -2877,7 +2876,7 @@ msgstr ""
"03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest "
"(\"1970-01-01 00:00:00\" UTC)"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Aeg, ulatus on %1$s kuni %2$s"
@@ -2898,7 +2897,7 @@ msgstr ""
"Fikseeritud pikkusega (0-255, vaikimisi 1) sõne, mis salvestamisel "
"pikendatakse sobivasse pikkusesse paremal pool asuvate tühikute abil"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2915,7 +2914,7 @@ msgstr ""
"TEXT veerg (maksimaalse pikkusega 255 (2^8 - 1) sümbolit) salvestatakse "
"ühebitise eesliitega, mis märgib väärtuse pikkust baitides"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3032,34 +3031,31 @@ msgstr "Hulktahukate kogum"
msgid "A collection of geometry objects of any type"
msgstr "Igat tüüpi geomeetriliste objektide kogum"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "Arv"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Create an index"
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Kuupäev ja aeg"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "Sõne"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Ruumiline"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "Neljabaidine täisarv ulatusega -2,147,483,648 kuni 2,147,483,647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3067,23 +3063,23 @@ msgstr ""
"Kaheksabaidine täisarv ulatusega -9,223,372,036,854,775,808 kuni "
"9,223,372,036,854,775,807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr "Süsteemi vaikimisi kahekordse täpsusega ujukoma number"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "Õige või vale"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Stores a Universally Unique Identifier (UUID)"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
@@ -3091,7 +3087,7 @@ msgstr ""
"Ajatempel, ulatus on '0001-01-01 00:00:00' UTC kuni '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) suudab salvestada mikrosekundeid"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@@ -3099,7 +3095,7 @@ msgstr ""
"Muutuva pikkusega (0-65,535) sõne, mis kasutab kõikide võrdluste jaoks "
"binaarset kõrvutamist"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
@@ -3107,7 +3103,7 @@ msgstr ""
"BLOB veerg (maksimaalse pikkusega 65,535 (2^16 - 1) baiti) salvestatakse "
"neljabaidise eesliitega, mis märgib väärtuse pikkust"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "Loetelu, mis on valitud määratletud väärtuste nimekirjast"
@@ -3179,21 +3175,21 @@ msgstr "Serveri valik"
msgid "Cookies must be enabled past this point."
msgstr "Küpsised peavad olema lubatud."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Paroolita sisselogimine on seadistuses keelatud (vaata AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s sekundi jooksul aktiivsust polnud. Palun logi uuesti sisse"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Ei saa MySQL serverisse sisse logida"
@@ -3237,18 +3233,18 @@ msgstr "Tabelid"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Andmed"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Ballast"
@@ -3355,8 +3351,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL päring"
@@ -3366,144 +3362,144 @@ msgstr "SQL päring"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL vastas: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "SQL valideerijaga ühendamine ebaõnnestus!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Selgita SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Jäta SQL selgitus vahele"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Ilma PHP koodita"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Loo PHP kood"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Uuenda"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Jäta SQL'i valideerimine vahele"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Valideeri SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Selle päringu kiirmuutmine"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Kiirmuutmine"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profileerimine"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Päike"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y kell %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Puudulik parameeter:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Algus"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Eelmine"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Järgmine"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Lõpp"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Mine "%s" andmebaasi."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Muuda"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Sirvi oma arvutist:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Vali veebiserveri üleslaadimise kataloogist %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Valitud üleslaadimise kataloogile ei pääse ligi"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Seal pole faile, mida üles laadida"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Teosta"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Prindi"
@@ -3587,68 +3583,68 @@ msgstr "mõlemad ülal nimetatuist"
msgid "neither of the above"
msgstr "mitte kumbki ülal nimetatuist"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Pole positiivne number"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Pole mitte-negatiivne number"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Pole õige pordi number"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Vale väärtus"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Väärtus peab olema võrdne või madalam kui %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Kadunud andmed %s jaoks"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "kättesaamatu"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" vajab %s laiendit"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "importimine ei toimi, puudulik funktsioon (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "eksportimine ei toimi, puudulik funktsioon (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL valideerija on keelatud"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP laiendit ei leitud"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maksimaalselt %s"
@@ -3667,7 +3663,7 @@ msgid "Set value: %s"
msgstr "Sea väärtus: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Taasta vaikimisi väärtus"
@@ -3968,7 +3964,7 @@ msgid "Character set of the file"
msgstr "Faili märgitabel"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formaat"
@@ -4067,7 +4063,7 @@ msgstr "Nime võti"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-tüüp"
@@ -4191,8 +4187,8 @@ msgstr "Kohanda vaikimisi valikuid"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4626,14 +4622,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Tabeli filtri kastis näidatavate tabelite minimaalne hulk"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Tabeli filtri kastis näidatavate tabelite minimaalne hulk"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Sõne, mis eraldab andmebaasid kolme erinevasse puu tasandisse"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Andmebaasipuu eraldaja"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4641,76 +4643,76 @@ msgstr ""
"Ainult lihtne versioon. Näita andmebaase puuna (tuvastatakse allpool "
"määratud eraldaja alusel)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Näita andmebaase puuna"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Keela see, kui tahad korraga kõiki andmebaase näha"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Kasuta lihtsat versiooni"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maksimaalne tabelipuu kõrgus"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Sõne, mis eraldab tabelid kolme erinevasse puu tasandisse"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Tabelipuu eraldaja"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL, millele navigeerimise raami logo suunab"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo lingi URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr "Ava lingitud leht peaaknas ([kbd]main[/kbd]) või uues ([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo lingi sihtkoht"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Tõsta kursori all olev server esile"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Luba esiletõstmine"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Hiljuti kasutatud tabelite suurim hulk. Keelamiseks sisesta 0"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Hiljuti kasutatud tabelid"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Suurim hulk sümboleid, mida näidatakse mitte-arvulises veerus sirvimise "
"vaates"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Piira veeru sümboleid"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4721,11 +4723,11 @@ msgstr ""
"FALSE puhul on lihtne ära unustada välja logimast teistest serveritest, kui "
"ühendatud on mitme serveriga."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Kustuta väljalogimisel kõik küpsised"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4733,11 +4735,11 @@ msgstr ""
"Määra, kas küpsisega autentimisel kutsutakse tagasi eelmine sisselogimine "
"või mitte"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Kutsu kasutajanimi uuesti"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4749,50 +4751,50 @@ msgstr ""
"seansi jaoks ja kustutatakse niipea, kui sulged veebilehitseja akna. Seda on "
"soovitatav kasutada mitteusaldusväärses keskkonnas."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Sisselogimise küpsise säilitamine"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Määra, kui kaua (sekundites) sisselogimise küpsis kehtib"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Sisselogimise küpsise kehtivus"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Kahekordista LONGTEXT veergude tekstiala suurust"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Suurem tekstiala LONGTEXT jaoks"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "SQL päringu kuvamiseks kasutatav suurim sümbolite hulk"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Näidatava SQL'i maksimaalne pikkus"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Kasutajad ei saa määrata kõrgemat väärtust"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Vasakus raamis ja andmebaaside nimekirjas näidatavate andmebaaside suurim "
"hulk"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Suurim hulk andmebaase"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4801,19 +4803,19 @@ msgstr ""
"Näidatavate ridade hulk tulemuses. Kui tulemus sisaldab rohkem ridu, siis "
"näidatakse "Eelmine" ja "Järgmine" linke."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Näidatavate ridade suurim hulk"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Tabeli nimekirjas näidatavate tabelite suurim hulk"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Suurim hulk tabeleid"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4821,11 +4823,11 @@ msgstr ""
"Keela vaikimisi hoiatus, mis kuvatakse siis, kui küpsisega autentimise jaoks "
"puudub mcrypt"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt'i hoiatus"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4833,45 +4835,45 @@ msgstr ""
"Baitide hulk, mida skriptil on lubatud kasutada, nt [kbd]32M[/kbd] ([kbd]0[/"
"kbd] - piiramatu)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Mälu piirang"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Need on lingid Muuda, Kopeeri ja Kustuta"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Kus näidata tabeli rea linke"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Kasuta algset tabeli ja andmebaasi nimede sorteerimise järjekorda"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Algne järjekord"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Kasuta ainult ikoone, ainult teksti või mõlemat"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Ikooniline navigeerimise riba"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"kasuta HTTP ülekannete parema kiiruse saavutamiseks GZip väljundi "
"puhverdamist"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip väljundi puhverdamine"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4879,19 +4881,19 @@ msgstr ""
"[kbd]SMART[/kbd] - s.t TIME, DATE, DATETIME ja TIMESTAMP tüüpi veergude "
"kahanevat järjekorda. Muul juhul on need kasvavas järjekorras"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Vaikimisi sorteerimise järjekord"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Kasuta püsiühendusi MySQL andmebaasidesse"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Püsiühendused"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4900,23 +4902,23 @@ msgstr ""
"Keela vaikimisi hoiatus, mida näidatakse andmebaasi struktuuri lehel siis, "
"kui phpMyAdmini seadistuse salvestuse jaoks vajalikku tabeleid ei leitud"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Puudulikud phpMyAdmini seadistuse salvestuse tabelid"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Ikoonilised tabeli tegevused"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Keela BLOB ja BINARY veergude muutmine"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Kaitse binaarseid veergusid"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4927,111 +4929,111 @@ msgstr ""
"päringu ajaloo näitamiseks Javascripti funktsioone (ajalugu kaob akna "
"sulgemisel)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Püsiv päringute ajalugu"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Mitu päringut ajaloos hoitakse"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Päringu ajaloo pikkus"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Vaheleht, mida näidatakse uue päringuakna avamisel"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Vaikimisi päringuakna vaheleht"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Päringuakna kõrgus (pikslites)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Päringuakna kõrgus"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Päringuakna laius (pikslites)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Päringuakna laius"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Vali funktsioon, mida kasutatakse märgitabeli teisendamisel"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Ümberkodeerimise mootor"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Tabelite sirvimisel jäetakse meelde iga tabeli sortimisalus"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Jäta meelde tabeli sortimisalus"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "Korda päiseid iga X rea tagant, [kbd]0[/kbd] keelab selle võimaluse"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Korda päiseid"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Salvesta korraga kõik muudetud lahtrid"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Serveri kataloog, kuhu eksporditud failid salvestatakse"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Salvestamise kataloog"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Kui ei kasutata, siis jäta tühjaks"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Hosti autentimise järjekord"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Vaikimisi jäta tühjaks"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Hosti autentimise reeglid"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Luba paroolita sisselogimised"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Luba sisse logida 'root' kasutajana"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP Basic Auth Realm name to display when doing HTTP Auth"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5040,19 +5042,19 @@ msgstr ""
"[a@http://swekey.com]SweKey riistvara autentimise[/a] seadistusfaili asukoht "
"(see ei asu sinu dokumentide juurkaustas, soovitatav: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey seadistuse fail"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Kasutatav autentimise meetod"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Autentimise tüüp"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5060,11 +5062,11 @@ msgstr ""
"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"järjehoidja[/a] tugi, soovitatav: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Järjehoidja tabel"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5072,31 +5074,31 @@ msgstr ""
"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Veeru teabe tabel"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Tihenda MySQL ühendus serveriga"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Tihenda ühendus"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Kuidas ühendada serveriga. Kui ei tea valida, siis jäta [kbd]tcp[/kbd]"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Ühenduse tüüp"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Kontrollkasutaja parool"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5104,11 +5106,11 @@ msgstr ""
"Eriline MySQL kasutaja, mis on piiratud õigustega. Lisainfot saab [a@http://"
"wiki.phpmyadmin.net/pma/controluser]vikist[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Kontrollkasutaja"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5116,19 +5118,19 @@ msgstr ""
"Seadistuse salvestuse säilitamise asendushost. Jäta tühjaks, kui soovid "
"kasutada juba määratud hosti"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Kontrollhost"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Andmebaaside nimekirja näitamisel loenda ka tabelite hulka"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Loenda tabeleid"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5136,11 +5138,11 @@ msgstr ""
"Jäta tühjaks, kui puudub kujundaja tugi, soovitatav: [kbd]pma_designer_coords"
"[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Kujundaja tabel"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5148,28 +5150,28 @@ msgstr ""
"Rohkem infot aadressilt [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
"bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Keela INFORMATION_SCHEMA kasutus"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Millist PHP laiendit kasutada. Kui tugi olemas, peaksid kasutama mysqli'i"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP laiend, mida kasutada"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Peida andmebaasid, mis kattuvad regulaaravaldisega (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Peida andmebaasid"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5177,23 +5179,23 @@ msgstr ""
"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL päringu ajaloo tabel"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Hostinimi, kus MySQL server töötab"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Serveri hostinimi"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Väljalogimise URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5201,19 +5203,19 @@ msgstr ""
"Piirab andmebaasi salvestatud tabeli eelistuste hulka, vanimad sissekanded "
"kustutatakse automaatselt"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Suurim hulk tabeli eelistusi, mida salvestada"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Ürita ühendada ilma paroolita"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Ühenda ilma paroolita"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5227,30 +5229,30 @@ msgstr ""
"nimekirja, kui sisestad nende nimed soovitud järjekorda ning asetad lõppu "
"[kbd]*[/kbd] märgi, et ülejäänud tähestiku järjekorda asetada."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Näita ainult loendatud andmebaase"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Jäta tühjaks, kui ei kasuta 'config' autentimist"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "'config' autentimise parool"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: [kbd]pma_pdf_pages[/"
"kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF skeem: lehtede tabel"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5261,21 +5263,21 @@ msgstr ""
"pmadb]pmadb[/a]. Kui tugi puudub, siis jäta tühjaks, soovitatav: [kbd]"
"phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Andmebaasi nimi"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Port, mida MySQL server kuulab. Jäta tühjaks, kui soovid kasutada vaikimisi "
"porti"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Serveri port"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5283,11 +5285,11 @@ msgstr ""
"Jäta tühjaks, kui seansside vahel puuduvad \"püsivad\" hiljuti kasutatud "
"tabelid, soovitatav: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Hiljuti kasutatud tabel"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5295,19 +5297,19 @@ msgstr ""
"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/relation]seoste "
"linkide[/a] tugi, soovitatav: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Seose tabel"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL käsk saadavalolevate andmebaaside väljatoomiseks"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES käsk"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5315,44 +5317,44 @@ msgstr ""
"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"autentimise tüüpe[/a]"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Sisselogimise seansi nimi"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Sisselogimise URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Sokkel, mida MySQL server kuulab, jäta tühjaks, kui soovid kasutada "
"vaikimisi soklit"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Serveri sokkel"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Luba SSL ühendus MySQL serverisse"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Kasuta SSL'i"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: [kbd]pma_table_coords[/"
"kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF skeem: tabeli koordinaadid"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5360,11 +5362,11 @@ msgstr ""
"Tabel, mis kirjeldab veergude näitamist. Jäta tühjaks, kui puudub tugi, "
"soovitatav: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Näita veergude tabelit"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5372,11 +5374,11 @@ msgstr ""
"Jäta tühjaks, kui seansside vahel puuduvad \"püsivad\" tabelite UI "
"eelistused, soovitatav: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "UI eelistuste tabel"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5384,43 +5386,43 @@ msgstr ""
"Kas andmebaasi loomisel lisatakse logi esimese reana DROP DATABASE IF EXISTS "
"käsk."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Lisa DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
"Kas tabeli loomisel lisatakse logi esimese reana DROP TABLE IF EXISTS käsk."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Lisa DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
"Kas vaate loomisel lisatakse logi esimese reana DROP VIEW IF EXISTS käsk."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Lisa DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Määrab käskude nimekirja, mida automaatne loomine kasutab uute versioonide "
"jaoks."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Käsud, mida jälgida"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5428,11 +5430,11 @@ msgstr ""
"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: [kbd]"
"pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL päringu jälgimise tabel"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5440,11 +5442,11 @@ msgstr ""
"Kas jälgimise mehhanism loob automaatselt versioonid tabelite ja vaadete "
"jaoks."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Loo versioonid automaatselt"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5452,15 +5454,15 @@ msgstr ""
"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: [kbd]"
"pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Kasutaja eelistusi säilitav tabel"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "'config' autentimise kasutaja"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5468,19 +5470,19 @@ msgstr ""
"Selle serveri kasutajasõbralik kirjeldus. Kui jätad tühjaks, siis näidatakse "
"selle asemel hostinime."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Selle serveri sõnaline nimi"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Kas kasutajale peaks näitama "näita kõiki (ridu)" nuppu"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Luba näidata kõiki ridu"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5490,78 +5492,78 @@ msgstr ""
"autentimist, sest parool on seadistusfailis raskesti kodeeritud. See ei "
"piira sama käsu otse käivitamist"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Näita parooli muutmise vormi"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Näita andmebaasi loomise vormi"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr "Näita või peida kõikides tabelites loomise ajatempli veerg"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Näita loomise ajatemplit"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr "Näita või peida kõikides tabelites viimase uuendamise ajatempli veerg"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Näita viimase uuendamise ajatemplit"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Näita või peida kõikides tabelites viimase kontrolli ajatemplit näitav veerg"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Näita viimase kontrolli ajatemplit"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr "Määrab, kas tabelit sirvides näidata suuna valikut"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Näita näitamise suunda"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr "Määrab, kas muutmisel/lisamisel näidata väljasid"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Näita välja tüüpe"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Näita funktsiooni väljasid muutmisel/lisamisel"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Näita funktsiooni väljasid"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Kas näidata vihjet või mitte"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Näita vihjet"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5569,40 +5571,40 @@ msgstr ""
"Näita linki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"väljundisse"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Näita phpinfo() linki"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Näita detailset MySQL serveri teavet"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Määrab, kas phpMyAdmini poolt koostatud SQL päringuid näidatakse"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Näita SQL päringuid"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "Määrab, kas päringukast jääb ekraanile pärast päringu saatmist"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Säilita päringu kast"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "Luba näidata andmebaasi ja tabeli statistikat (nt ruumi kasutus)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Näita statistikat"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5610,11 +5612,11 @@ msgstr ""
"Kui kohtspikrid on lubatud ja andmebaasil on kommentaar, siis see näitab "
"kommentaari ja tegelikku nime"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Näita andmebaasi nime asemel selle kommentaari"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5626,30 +5628,30 @@ msgstr ""
"poolitamiseks. Seega on ainult kausta nimeks alias ja tabeli nimi jääb ise "
"muutmata"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Näita tabeli nime asemel selle kommentaari"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Näita tabeli kommentaare kohtspikris"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Märgi kasutatud tabelid ja võimalda näidata andmebaase koos lukustatud "
"tabelitega"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Jäta lukustatud tabelid vahele"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Nõuab, et SQL valideerija oleks lubatud"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5659,7 +5661,7 @@ msgstr "Nõuab, et SQL valideerija oleks lubatud"
msgid "Password"
msgstr "Parool"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5667,11 +5669,11 @@ msgstr ""
"[strong]Hoiatus:[/strong] vajab PHP SOAP laiendit või paigaldatud peab olema "
"PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Luba SQL valideerija"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5679,20 +5681,20 @@ msgstr ""
"Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on [kbd]"
"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Kasutajanimi"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Kui tuvastatud on Suhosin, siis hoiatust näidatakse pealehel"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin'i hoiatus"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5700,11 +5702,11 @@ msgstr ""
"Tekstiala suurus (veerud) muutmise vaates. See väärtus tõstetakse esile SQL "
"päringu tekstialades (*2) ja päringu aknas (*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Tekstiala veerud"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5712,31 +5714,31 @@ msgstr ""
"Tekstiala suurus (read) muutmise vaates. See väärtus tõstetakse esile SQL "
"päringu tekstialades (*2) ja päringu aknas (*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Tekstiala read"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Veebilehitseja akna pealkiri, kui valitud on andmebaas"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Veebilehitseja akna pealkiri, kui valitud pole mitte midagi"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Vaikimisi pealkiri"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Veebilehitseja akna pealkiri, kui valitud on server"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Veebilehitseja akna pealkiri, kuid valitud on tabel"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5748,27 +5750,27 @@ msgstr ""
"Forwarded-For) päist, mis tuleb proksist 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Usaldusväärsete prokside nimekiri lubatud/keelatud IP'de jaoks"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Kataloog serveris, kuhu saad importimiseks faile üles laadida"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Üleslaadimise kataloog"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Luba otsida tervest andmebaasist"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Kasuta andmebaasi otsingut"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5776,27 +5778,27 @@ msgstr ""
"Kui keelatud, siis kasutajad ei saa kasutada ühtegi allolevat valikut, "
"sõltumata paremal asuvast märkeruudust"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Luba sätetes kujundaja vaheleht"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Kontrolli uusimat versiooni"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Lubab phpMyAdmini pealehel kontrollida viimast versiooni"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Versiooni kontroll"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5804,7 +5806,7 @@ msgstr ""
"Luba [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] tihendamine "
"importimistel ja eksportimistel"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5825,82 +5827,82 @@ msgid "Signon authentication"
msgstr "Sisselogimise (signon) autentimine"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV kasutades LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Kiire"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Kohandatud"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Andmebaasi eksportimise valikud"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV MS Exceli jaoks"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Ei saanud luua Drizzle ühenduse teeki"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Ei saanud ühendada Drizzle serveriga"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Ei saanud ühendada MySQL serveriga"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Tühi kasutajanimi config-ga autentimise meetodi jaoks"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Tühi sisselogimise nimi sisselogimisega autentimise meetodi jaoks"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Tühi sisselogimise URL sisselogimisega autentimise meetodi jaoks"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Tühi phpMyAdmini kontrollkasutaja pmadb jaoks"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Tühi phpMyAdmini kontrollkasutaja parool pmadb jaoks"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Vale IP-aadress: %s"
@@ -5920,22 +5922,22 @@ msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust."
msgid "possible deep recursion attack"
msgstr "võimalik tõsine rünnak"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Server ei vasta."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detailid..."
@@ -5999,7 +6001,7 @@ msgstr "Loo tabel"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nimi"
@@ -6157,25 +6159,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Kodeerimise teisendus:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s from %2$s branch"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "no branch"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Git'i versioon"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "committed on %1$s by %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "authored on %1$s by %2$s"
@@ -6887,18 +6889,17 @@ msgid "Display MIME types"
msgstr "Näita MIME-tüüpe"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Loomise aeg"
@@ -7118,15 +7119,7 @@ msgstr "GIS visualiseerimiseks andmeid ei leitud."
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS ülekirjutamise katse"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL tulemus"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Koostanud"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)."
@@ -7225,7 +7218,7 @@ msgstr "Vale veeru hulk CSV sisendis %d.-ndal real."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Tabeli nimi"
@@ -7579,7 +7572,7 @@ msgstr "PDF-ide koostamine"
msgid "Displaying Column Comments"
msgstr "Veeru kommentaaride näitamine"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Veebilehitseja transformatsioon"
@@ -7681,10 +7674,10 @@ msgid "Variable"
msgstr "Muutuja"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Väärtus"
@@ -7747,7 +7740,7 @@ msgstr "Genereeri parool"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7783,8 +7776,8 @@ msgid "Edit event"
msgstr "Muuda sündmust"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Taotluse töötlemisel esines viga"
@@ -7834,7 +7827,7 @@ msgstr "Lõpetamisel säilita"
msgid "Definer"
msgstr "Määraja"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Määraja peab olema formaadis \"kasutajanimi@hostinimi\""
@@ -7892,7 +7885,7 @@ msgstr ""
"täiustatud 'mysqli' laiendit."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Vale funktsiooni tüüp: \"%s\""
@@ -7963,17 +7956,17 @@ msgstr "Turvalisuse tüüp"
msgid "SQL data access"
msgstr "SQL andmete juurdepääs"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Sa pead andma funktsiooni nime"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Parameetrile anti vale suund \"%s\"."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -7981,41 +7974,41 @@ msgstr ""
"Sa pead andma ENUM, SET, VARCHAR ja VARBINARY tüüpi funktsiooni "
"parameetritele pikkuse/väärtused."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Sa pead andma igale funktsiooni parameetrile nime ja tüübi."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Sa pead andma funktsioonile õige pöördumise tüübi."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Sa pead andma funktsiooni definitsiooni."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "Toimingu viimane käsk mõjutas %d rida"
msgstr[1] "Toimingu viimane käsk mõjutas %d rida"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "%s funktsiooni käivitamise tulemused"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Käivita funktsioon"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Funktsiooni parameetrid"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funktsioon"
@@ -8190,7 +8183,7 @@ msgstr "Sisu tabel"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atribuudid"
@@ -8289,12 +8282,12 @@ msgid "Toggle scratchboard"
msgstr "Ava/sulge märkmetahvel"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Tundmatu keel: %1$s."
@@ -8340,7 +8333,7 @@ msgstr "Teosta SQL päring(ud) %s serveris"
msgid "Run SQL query/queries on database %s"
msgstr "Teosta SQL päring(ud) %s andmebaasis"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Puhasta"
@@ -8349,11 +8342,11 @@ msgstr "Puhasta"
msgid "Columns"
msgstr "Veerud"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Lisa see SQL päring järjehoidjasse"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale"
@@ -8452,12 +8445,12 @@ msgstr ""
"SQL valideerijat ei saanud käivitada. Palun kontrolli, et oled paigaldanud "
"vajalikud PHP laiendid nagu on kirjeldatud %sdokumentatsioonis%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "%s jälgimine on aktiveeritud."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8469,7 +8462,7 @@ msgstr ""
"kurakaldkriipsu (\"\\\") või jutumärgi (\"'\"), siis lisa selle ette "
"kurakaldkriips (nt '\\\\xyz' või 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8477,17 +8470,17 @@ msgstr ""
"Vaikimisi väärtuste jaoks sisesta palun ilma kurakaldkriipsuta või "
"jutumärkideta lihtsalt üksik väärtus, formaadis: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Liiguta veergu"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8496,11 +8489,11 @@ msgstr ""
"Saadavalolevate transformatsiooni valikute ja nende MIME-tüüpi "
"transformatsioonide nimekirja jaoks vajuta %stransformatsiooni kirjeldusele%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Transformatsiooni valikud"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8512,71 +8505,71 @@ msgstr ""
"lisama kurakaldkriipsu (\"\\\") või jutumärgi (\"'\"), siis lisa selle ette "
"kurakaldkriips (nt '\\\\xyz' või 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM või SET andmed on liiga pikad?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Võta rohkem muutmise ruumi"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Puudub"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Nagu määratud:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primaarne"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Täistekst"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "esimene"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "peale %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Lisa %s veerg(u)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Pead lisama vähemalt ühe veeru."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Varundusmootor"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "PARTITION definitsioon"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operaator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Tabeli otsing"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Muuda/Lisa"
@@ -8742,11 +8735,11 @@ msgstr ""
"Sinu eelistused salvestatakse ainult praeguse seansi jaoks. Nende püsivaks "
"säilitamiseks on tarvis %sphpMyAdmini seadistuse salvestust%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Ei saanud seadistust salvestada"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8758,8 +8751,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP arhiivist ei leitud ühtegi faili!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Viga ZIP arhiivis:"
@@ -8935,16 +8928,22 @@ msgstr ""
msgid "No databases"
msgstr "Andmebaasid puuduvad"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtreeri tabeleid nime alusel"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtreeri tabeleid nime alusel"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Loo tabel"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Palun vali andmebaas"
@@ -10086,7 +10085,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Päringud alates käivitumisest: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Käsud"
@@ -11321,12 +11320,12 @@ msgstr "Ignoreeri vigu"
msgid "Show form"
msgstr "Näita vormi"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr "URL ega CURL pole kättesaadaval. Versiooni pole võimalik kontrollida."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11334,15 +11333,15 @@ msgstr ""
"Versiooni lugemine ebaõnnestus. Võibolla oled sa ühenduseta või uuendamise "
"server ei vasta."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Serverist saabus vigane versiooni sõne"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Seletamatu versiooni sõne"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11351,11 +11350,11 @@ msgstr ""
"Sa kasutad Git versiooni, käivita [kbd]git pull[/kbd] :-)[br]Viimane "
"stabiilne versioon on %s, välja antud %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Uut stabiilset versiooni saadaval ei ole"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11369,7 +11368,7 @@ msgstr ""
"pruugi IP-põhine kaitse olla usaldusväärne, kui sinu IP kuulub ISP'le, "
"kellega on ühendatud koos sinuga tuhandeid kasutajaid."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11379,7 +11378,7 @@ msgstr ""
"autentimine, siis loodi võti sinu jaoks automaatselt. Seda kasutatakse "
"küpsiste krüptimiseks, sa ei pea seda meelde jätma."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11388,7 +11387,7 @@ msgstr ""
"%sBzip2 tihendamine ja hõrendamine%s vajab funktsioone (%s), mida siin "
"süsteemis pole."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11397,13 +11396,13 @@ msgstr ""
"kataloogile ei saaks ligi maailm ega poleks loetav või kirjutatav teiste "
"sinu serveri kasutajate poolt."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Kui su veebiserver seda toetab, siis see %svalik%s peaks olema lubatud."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11412,7 +11411,7 @@ msgstr ""
"%sGZip tihendamine ja hõrendamine%s vajab funktsioone (%s), mida siin "
"süsteemis pole."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11423,7 +11422,7 @@ msgstr ""
"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime"
"%s väärtus on sellest madalam (praegu %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11432,7 +11431,7 @@ msgstr ""
"%sSisselogimise küpsise kehtivus%s peaks olema kuni 1800 sekundit (30 "
"minutit). 1800-st suuremad väärtused võivad tuua esile turvariski."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11442,7 +11441,7 @@ msgstr ""
"ole 0, siis %ssisselogimise küpsise kehtivuse%s väärtus peab olema madalam "
"või sellega võrdne."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11455,7 +11454,7 @@ msgstr ""
"Siiski ei pruugi IP-põhine kaitse olla usaldusväärne, kui sinu IP kuulub "
"ISP'le, kellega on ühendatud koos sinuga tuhandeid kasutajaid."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11470,38 +11469,38 @@ msgstr ""
"URL'i, saavad otse ligipääsu sinu phpMyAdmini paneelile. Määra %sautentimise "
"tüübiks%s [kbd]cookie[/kbd] või [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip tihendamine%s vajab funktsioone (%s), mida siin süsteemis pole."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip hõrendamine%s vajab funktsioone (%s), mida siin süsteemis pole."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"Sa peaksid kasutama SSL ühendusi, kui sinu andmebaasi server seda toetab."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Jõudluse huvides peaksid kasutama mysqli'd."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Sa lubad serveriga ühendada ilma paroolita."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Võti on liiga lühike, see peaks olema vähemalt 8 sümbolit."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid."
@@ -11509,8 +11508,8 @@ msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid."
msgid "Wrong data"
msgstr "Valed andmed"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Sirvi võõrvõtme väärtusi"
@@ -11540,21 +11539,29 @@ msgstr "Näitan SQL päringut"
msgid "Validated SQL"
msgstr "Valideeritud SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL tulemus"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Koostanud"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleemid `%s` tabeli indeksitega"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Nimi"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "%1$s tabel on edukalt muudetud"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Veerud on edukalt liigutatud."
@@ -11672,7 +11679,7 @@ msgstr "Y väärtused"
msgid "Table %s already exists!"
msgstr "%s tabel on juba olemas!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "%1$s tabel on loodud."
@@ -11871,43 +11878,43 @@ msgstr "Eemalda partitsioneerimine"
msgid "Check referential integrity:"
msgstr "Kontrolli pärinevust:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Tabelite näitamine"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Ruumi kasutus"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Kasutus"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektiivne"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Rea statistika"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "staatiline"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dünaamiline"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Rea pikkus"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Rea laius"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Järgmine automaatne indeks"
@@ -12194,28 +12201,28 @@ msgstr "Jälgi nende andmete töötluse käske:"
msgid "Create version"
msgstr "Loo versioon"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Teosta kahe erineva veergu jaoks \"päring näite alusel\" (metamärk: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Täiendav otsingu kriteerium"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Kasuta seda veergu iga punkti nimetamiseks"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Suurim ridade hulk diagrammis"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Sirvi/Muuda punkte"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Kuidas kasutada"
diff --git a/po/eu.po b/po/eu.po
index b67d47c375..1b4d3d6c57 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-02 12:41+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Dena erakutsi"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Orri zenbakia:"
@@ -40,30 +40,30 @@ msgstr ""
"cross-window updates."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Bilatu"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Bilatu"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Joan"
@@ -114,8 +114,8 @@ msgid "Database comment: "
msgstr "Datu-basearen iruzkina: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Taularen iruzkinak"
@@ -126,14 +126,14 @@ msgstr "Taularen iruzkinak"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Zutabea"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -141,12 +141,12 @@ msgstr "Zutabea"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Mota"
@@ -158,9 +158,9 @@ msgstr "Mota"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulua"
@@ -170,7 +170,7 @@ msgstr "Nulua"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Lehenetsia"
@@ -179,18 +179,18 @@ msgstr "Lehenetsia"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Esteka:"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Iruzkinak"
@@ -201,11 +201,11 @@ msgstr "Iruzkinak"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -223,12 +223,12 @@ msgstr "Ez"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -238,8 +238,8 @@ msgstr "Bai"
msgid "View dump (schema) of database"
msgstr "Ikusi datu-basearen iraulketa (eskema)"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Ez da taularik aurkitu datu-basean."
@@ -327,8 +327,8 @@ msgstr "Kopiatutako datu-basea hautatu"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -348,8 +348,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Aldatu edo esportatu erlazio-eskema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -359,45 +359,44 @@ msgstr "Aldatu edo esportatu erlazio-eskema"
msgid "Table"
msgstr "Taula"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Errenkadak"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Tamaina"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "lanean"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Sortzea"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Azken eguneraketa"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Azken egiaztapena"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -486,13 +485,13 @@ msgstr "Taulak erabili"
msgid "SQL query on database %s :"
msgstr "SQL-kontsulta %s datu-basean:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Kontsulta bidali"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Sarbidea ukatua"
@@ -528,8 +527,8 @@ msgstr[0] "%s emaitza %s taulan"
msgstr[1] "%s emaitzak %s taulan"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Arakatu"
@@ -605,11 +604,11 @@ msgstr "%s Ikuspegia ezabatua izan da"
msgid "Table %s has been dropped"
msgstr "%s taula ezabatu egin da"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Jarraipena aktibatuta dago."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Jarraipena ez dago aktibatuta."
@@ -623,7 +622,7 @@ msgstr ""
"%s erreferentzia egin."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Ikusipegia"
@@ -668,7 +667,7 @@ msgstr "Arazteko hondakinak egiaztatu"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -677,17 +676,18 @@ msgid "Export"
msgstr "Esportatu"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Inprimatzeko ikuspegia"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Hutsik"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -730,15 +730,14 @@ msgid "Tracked tables"
msgstr "Taulak jarraipenarekin"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Datu-basea"
@@ -756,7 +755,7 @@ msgstr "Eguneratua"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Egoera"
@@ -943,13 +942,13 @@ msgstr "Erakutsi laster-marka"
msgid "The bookmark has been deleted."
msgstr "Gordetako kontsulta ezabatu da."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Ezinezkoa fitxategia irakurtzea"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -972,7 +971,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "%s laster-marka sortu da"
@@ -994,8 +993,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1112,9 +1111,9 @@ msgid "Close"
msgstr "Itxi"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Editatu"
@@ -1140,7 +1139,7 @@ msgstr "Datu estatikoak"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Gutira"
@@ -1151,12 +1150,12 @@ msgid "Other"
msgstr "Beste"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1242,13 +1241,13 @@ msgid "System swap"
msgstr "Sistemaren swap-a"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1312,27 +1311,27 @@ msgid "Connections"
msgstr "Konexioak"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Byte"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1378,9 +1377,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Batez"
@@ -1568,7 +1567,7 @@ msgstr "SQL-a azaldu"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Denbora"
@@ -1929,7 +1928,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1945,7 +1944,7 @@ msgstr "SQL kontsulta"
msgid "Show search criteria"
msgstr "SQL kontsulta"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2132,7 +2131,7 @@ msgstr "Pasahitza aldatu"
msgid "More"
msgstr "Astel"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2240,27 +2239,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Urt"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Ots"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Api"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2268,37 +2267,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Eka"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Uzt"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Abu"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Ira"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Urr"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Aza"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Abe"
@@ -2347,32 +2346,32 @@ msgid "Sun"
msgstr "Iga"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Astel"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Astea"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Astez"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Oste"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Osti"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Lar"
@@ -2531,11 +2530,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2543,47 +2542,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2597,7 +2596,7 @@ msgstr "Ez dago indizerik definituta!"
msgid "Indexes"
msgstr "Indizeak"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2634,46 +2633,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Datu-baseak"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Zerbitzaria"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Egitura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Txertatu"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Eragiketak"
@@ -2755,27 +2754,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Errorea"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2821,51 +2820,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Datu-basean bilatu"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "Datu-basean bilatu"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "%s taula %s-(e)ra berrizendatua izan da"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2873,16 +2872,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2934,7 +2933,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2975,12 +2974,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Zerbitzariaren bertsioa"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2991,7 +2990,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Zerbitzariaren bertsioa"
@@ -3008,7 +3007,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3021,7 +3020,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3120,77 +3119,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Indize berri bat sortu"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Lerro kateak"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Gutira"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3262,20 +3261,20 @@ msgstr "Zerbitzariaren hautaketa"
msgid "Cookies must be enabled past this point."
msgstr "Puntu honetarako cookie-ek gaituta egon behar dute."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Ezinezkoa MySql zerbitzarian saioa hastea"
@@ -3319,18 +3318,18 @@ msgstr "Taulak"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Datuak"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Arazteko hondakina"
@@ -3441,8 +3440,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL kontsulta"
@@ -3452,81 +3451,81 @@ msgstr "SQL kontsulta"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL-ek zera dio: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL-a azaldu"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL-ren azalpena saltatu"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP Koderik gabe"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP kodea sortu"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL-ren balidapena saltatu"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL balidatu"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Iga"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y-%m-%d, %H:%M:%S"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s egun, %s ordu, %s minutu eta %s segundu"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3534,7 +3533,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Hasi"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3543,7 +3542,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Aurrekoa"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3552,7 +3551,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Hurrengoa"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3560,45 +3559,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Amaiera"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" datu-basera joan."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Inprimatu"
@@ -3691,72 +3690,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Aldagaia"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Esteka aurkitugabea"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3775,7 +3774,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4066,7 +4065,7 @@ msgid "Character set of the file"
msgstr "Fitxategiaren karaktereen kodeketa:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formatoa"
@@ -4181,7 +4180,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-mota"
@@ -4312,8 +4311,8 @@ msgstr "Datu-basea esportatzeko aukerak"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV datuak"
@@ -4749,110 +4748,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Taula aztertu"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4860,451 +4863,451 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Baliabideen mugak"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Taularen \"Order By\" aldatu"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Kontsulta-leihoa"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Kontsulta-leihoa"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Kontsulta-leihoa"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Taula berrizendatu izen honetara: "
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Konexioak"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Edozein ostalari"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Taularik ez"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Datu-baserik ez"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5313,371 +5316,371 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Datu-basea"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Taula aztertu"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Taula konpondu"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Zerbitzariaren hautaketa"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Zutabearen iruzkinak erakusten"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Sententziak"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "Zerbitzariaren bertsioa"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP informazioa erakutsi"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Datu-basea esportatzeko aukerak"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Taulak erakutsi"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Sareta erakutsi"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Kontsulta osoak erakutsi"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL kontsulta"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Errenkadaren estatistikak"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5685,28 +5688,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5716,81 +5719,81 @@ msgstr ""
msgid "Password"
msgstr "Pasahitza"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Erabiltzaile-izena:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Lehenetsia"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5798,59 +5801,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5871,82 +5874,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Datu-basea esportatzeko aukerak"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel datuentzako CSV"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5966,21 +5969,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6045,7 +6048,7 @@ msgstr "Orri berri bat sortu"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Izena"
@@ -6232,25 +6235,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Zerbitzariaren bertsioa"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Zerbitzariaren bertsioa"
@@ -6965,18 +6968,17 @@ msgid "Display MIME types"
msgstr "MIME-mota erabilgarriak"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Zerbitzaria"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Sortzeko denbora"
@@ -7187,15 +7189,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL emaitza"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Egilea:"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)."
@@ -7290,7 +7284,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7655,7 +7649,7 @@ msgstr "PDF-en sorrera"
msgid "Displaying Column Comments"
msgstr "Zutabearen iruzkinak erakusten"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Nabigatzailearen eraldaketa"
@@ -7755,10 +7749,10 @@ msgid "Variable"
msgstr "Aldagaia"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "balioa"
@@ -7818,7 +7812,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7856,8 +7850,8 @@ msgid "Edit event"
msgstr "Bidalita"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7919,7 +7913,7 @@ msgstr "\"Insert\"ak osatu"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7975,7 +7969,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8058,57 +8052,57 @@ msgstr "Kontsulta mota"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funtzioak"
@@ -8308,7 +8302,7 @@ msgstr "Edukinen taula"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributuak"
@@ -8417,12 +8411,12 @@ msgid "Toggle scratchboard"
msgstr "Aldatu \"scratchboard\"-a"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8472,7 +8466,7 @@ msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
msgid "Run SQL query/queries on database %s"
msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8483,11 +8477,11 @@ msgstr ""
msgid "Columns"
msgstr "Zutabe izenak"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Kontsulta hau gogokoetan gorde"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri"
@@ -8588,13 +8582,13 @@ msgstr ""
"beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s "
"azaltzen den moduan."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Jarraipena aktibatuta dago."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8613,7 +8607,7 @@ msgstr ""
"bazenu, beti erabili alderantzikaturiko barra (adibidez '\\\\xyz' or 'a"
"\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8621,19 +8615,19 @@ msgstr ""
"Lehenetsitako balioak erabiltzeko, mesedez sartu balio bakar bat, komatxo "
"edota alderantzikaturiko barrarik gabe, formato hau erabiliz: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indizea"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8642,11 +8636,11 @@ msgstr ""
"Eraldaketen hobespen eta haien MIME-mota eraldaketen zerrendarako, egizu "
"klik hemen %stransformation descriptions%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Eraldaketen hobespenak"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8658,80 +8652,80 @@ msgstr ""
"edo barra arrunta (\"'\") erabili beharko bazenu, beti erabili "
"alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Batez"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Honela definitua:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Lehen mailakoa"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Testu osoa"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s(a)ren ondoren"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Gehitu %s zutabe"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "Eragiketak"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Bilatu"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8912,11 +8906,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8926,8 +8920,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9104,19 +9098,25 @@ msgstr ""
msgid "No databases"
msgstr "Datu-baserik ez"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Taularen \"Order By\" aldatu"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Taularen \"Order By\" aldatu"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Orri berri bat sortu"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Datu-base bat hautatu mesedez"
@@ -10318,7 +10318,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Sententziak"
@@ -11432,37 +11432,37 @@ msgstr ""
msgid "Show form"
msgstr "Kolorea erakutsi"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11471,39 +11471,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11511,21 +11511,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11534,7 +11534,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11544,37 +11544,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11584,8 +11584,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Datu-baserik ez"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11619,21 +11619,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "SQL balidatu"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL emaitza"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Egilea:"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etiketa"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11766,7 +11774,7 @@ msgstr "balioa"
msgid "Table %s already exists!"
msgstr "%s erabiltzailea badago lehendik ere!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "%s taula ezabatu egin da"
@@ -11985,45 +11993,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Erreferentzien integritatea egiaztatu:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Taulak erakutsi"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Erabilitako lekua"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Erabilpena"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Eraginkorra"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Errenkadaren estatistikak"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamikoa"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Errenkadaren luzera"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Errenkadaren tamaina"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12335,30 +12343,30 @@ msgstr ""
msgid "Create version"
msgstr "Zerbitzariaren bertsioa"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL kontsulta"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index c6f4f24424..c364b45649 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-05-19 03:54+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:19+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: persian \n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "نمايش همه"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "شماره صفحه:"
@@ -36,30 +36,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "جستجو"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -69,7 +69,7 @@ msgstr "جستجو"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "تاييد"
@@ -106,11 +106,11 @@ msgstr "پايگاه داده %1$s ایجاد شده است."
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "توضيحات پایگاه داده:"
+msgstr "توضيحات پایگاه داده: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "توضيحات جدول"
@@ -121,14 +121,14 @@ msgstr "توضيحات جدول"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "ستون"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -136,12 +136,12 @@ msgstr "ستون"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "نوع"
@@ -153,9 +153,9 @@ msgstr "نوع"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "خالي"
@@ -165,7 +165,7 @@ msgstr "خالي"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "پيشفرض"
@@ -174,18 +174,18 @@ msgstr "پيشفرض"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "پيوند به"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "توضيحات"
@@ -196,11 +196,11 @@ msgstr "توضيحات"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,12 +218,12 @@ msgstr "خير"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -233,8 +233,8 @@ msgstr "بلي"
msgid "View dump (schema) of database"
msgstr "نمايش الگوي پايگاه داده"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ."
@@ -321,8 +321,8 @@ msgstr "تعویض به پایگاه داده ی کپی شده"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "ویرایش یا صدور نمای رابطه ای"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "ویرایش یا صدور نمای رابطه ای"
msgid "Table"
msgstr "جدول"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "سطرها"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "اندازه"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "in use"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "ایجاد"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "آخرین به روز رسانی"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr ""
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -485,13 +484,13 @@ msgstr "بكارگيري جدولها"
msgid "SQL query on database %s :"
msgstr "پرس و جوي SQL از پايگاه داده %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr ""
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "دسترسي مجاز نيست"
@@ -526,8 +525,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "%s عبارت همتا در جدول %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "مشاهده"
@@ -606,11 +605,11 @@ msgstr "نمای %s حذف گرديد."
msgid "Table %s has been dropped"
msgstr "جدول %s حذف گرديد"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "پیگردی فعال می باشد."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "پیگردی فعال نمی باشد."
@@ -624,7 +623,7 @@ msgstr ""
"نمایید."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "نمایش"
@@ -669,7 +668,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -678,17 +677,18 @@ msgid "Export"
msgstr "صدور"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "نماي چاپ"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "خالي كردن"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -735,15 +735,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "پايگاه داده"
@@ -761,7 +760,7 @@ msgstr "به روز شده"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -966,13 +965,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "سطر حذف گرديد ."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -995,7 +994,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1017,8 +1016,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1138,9 +1137,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "ويرايش"
@@ -1167,7 +1166,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "جمع كل"
@@ -1178,12 +1177,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1271,13 +1270,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "مگا بايت"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "كيلوبايت"
@@ -1339,27 +1338,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "بايت"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "گيگا بايت"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "ترابايت"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "پتا بايت"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "اگزا بايت"
@@ -1406,9 +1405,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "خير"
@@ -1594,7 +1593,7 @@ msgstr "شرح دادن SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1947,7 +1946,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1963,7 +1962,7 @@ msgstr "پرس و جوي SQL"
msgid "Show search criteria"
msgstr "پرس و جوي SQL"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2150,7 +2149,7 @@ msgstr "تغيير اسم رمز"
msgid "More"
msgstr "دوشنبه"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2260,27 +2259,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "ژانويه"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "فوريه"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "آوريل"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2288,37 +2287,37 @@ msgid "May"
msgstr "مي"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "ژوئن"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "جولاي"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "آگوست"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "سپتامبر"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "اكتبر"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "نوامبر"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "دسامبر"
@@ -2367,32 +2366,32 @@ msgid "Sun"
msgstr "يكشنبه"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "دوشنبه"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "سهشنبه"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "چهارشنبه"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "پنجشنبه"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "جمعه"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "شنبه"
@@ -2547,11 +2546,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "اندازه حروف"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2559,47 +2558,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2613,7 +2612,7 @@ msgstr "هيچ فهرستي تعريفنشدهاست!"
msgid "Indexes"
msgstr "فهرستها"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2650,46 +2649,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "پايگاههاي داده"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "سرور"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "ساختار"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "درج"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "عمليات"
@@ -2772,27 +2771,27 @@ msgstr ""
msgid "Engines"
msgstr "موتور"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "خطا"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2836,51 +2835,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "جستجو در پايگاهداده"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "جستجو در پايگاهداده"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "جدول %s به %s تغيير نام دادهشد"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2888,16 +2887,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "پش دید موجود نمی باشد"
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2949,7 +2948,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2990,12 +2989,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "نسخه سرور"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3006,7 +3005,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "نسخه سرور"
@@ -3023,7 +3022,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3036,7 +3035,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3134,77 +3133,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "ساخت فهرست جديد"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "خطوط منتهي به"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "جمع كل"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3271,20 +3270,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3328,18 +3327,18 @@ msgstr "جدولها"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "داده"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3444,8 +3443,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "پرس و جوي SQL"
@@ -3455,85 +3454,85 @@ msgstr "پرس و جوي SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
-msgstr "پيغام MySQL :"
+msgstr "پيغام MySQL : "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "شرح دادن SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
#, fuzzy
msgid "Skip Explain SQL"
msgstr "شرح دادن SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "بدون كد PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "ساخت كد PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
#, fuzzy
msgid "Skip Validate SQL"
msgstr "معتبرسازي SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "معتبرسازي SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "موتور"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "يكشنبه"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y ساعت %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3541,7 +3540,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "شروع"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3550,7 +3549,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "قبل"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3559,7 +3558,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "بعد"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3567,46 +3566,46 @@ msgctxt "Last page"
msgid "End"
msgstr "انتها"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "برای انتخاب کلیک کنبد"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "پوشهاي را كه براي انتقال فايل انتخاب كردهايد قابل دسترسي نيست."
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "چاپ"
@@ -3697,72 +3696,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "متغییر"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "پيوند پيدا نشد"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3781,7 +3780,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4069,7 +4068,7 @@ msgid "Character set of the file"
msgstr "مجموعه كاراكترهاي پرونده:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "قالب"
@@ -4178,7 +4177,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4310,8 +4309,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "دادههاي CSV"
@@ -4740,110 +4739,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "تحليل جدول"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4851,442 +4854,442 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "تغيير جدول مرتب شده با"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "بازناميدن جدول به"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "همه ميزبانها"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "No tables"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "No databases"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5295,368 +5298,368 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "پايگاه داده"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "تحليل جدول"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "مرمت جدول"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "نمايش توضيحات ستون"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "شرج"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "نسخه سرور"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "نمايش اطلاعات PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "آمار پايگاههاي داده"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "نمايش جدولها"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "پرس و جوي SQL"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "آمار سطرها"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5664,28 +5667,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5695,81 +5698,81 @@ msgstr ""
msgid "Password"
msgstr "اسم رمز"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "نام كاربر:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "اضافه يا حذف ستونها"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "پيشفرض"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5777,59 +5780,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5850,83 +5853,83 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
msgid "Database export options"
msgstr "آمار پايگاههاي داده"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV براي دادههاي MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5946,21 +5949,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6026,7 +6029,7 @@ msgstr "ساخت يك صفحه جديد"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "اسم"
@@ -6208,25 +6211,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "نسخه سرور"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "نسخه سرور"
@@ -6924,18 +6927,17 @@ msgid "Display MIME types"
msgstr "نمايش خصوصيات"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "ميزبان"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "زمان توليد"
@@ -7144,15 +7146,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "نتيجه SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "توليدشده توسط"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)."
@@ -7247,7 +7241,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7609,7 +7603,7 @@ msgstr "ساخت PDFs"
msgid "Displaying Column Comments"
msgstr "نمايش توضيحات ستون"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7707,10 +7701,10 @@ msgid "Variable"
msgstr "متغییر"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "مقدار"
@@ -7770,7 +7764,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7808,8 +7802,8 @@ msgid "Edit event"
msgstr "افزودن يك كاربر جديد"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7868,7 +7862,7 @@ msgstr "تمام وروديها"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7923,7 +7917,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8004,56 +7998,56 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "تابع"
@@ -8242,7 +8236,7 @@ msgstr "توضيحات جدول"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "ويژگيها"
@@ -8347,12 +8341,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "rtl"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "زبانِ ناشناس : %1$s."
@@ -8402,7 +8396,7 @@ msgstr "اجراي پرس و جو(ها)ي SQL در پايگاهداده %s"
msgid "Run SQL query/queries on database %s"
msgstr "اجراي پرس و جو(ها)ي SQL در پايگاهداده %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8414,11 +8408,11 @@ msgstr "تقویم"
msgid "Columns"
msgstr "نام ستونها"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8504,13 +8498,13 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "پیگردی فعال می باشد."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8529,36 +8523,36 @@ msgstr ""
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
"يا 'a\\'b')"
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "فهرست"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "اضافه يا حذف ستونها"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
#, fuzzy
msgid ""
"Please enter the values for transformation options using this format: 'a', "
@@ -8572,79 +8566,79 @@ msgstr ""
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
"يا 'a\\'b')"
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "خير"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "اصلي"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "كاملا متن"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "بعد از %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "افزودن ستون جديد"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "عمليات"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "جستجو"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8770,11 +8764,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8784,8 +8778,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8954,19 +8948,25 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "تغيير جدول مرتب شده با"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "تغيير جدول مرتب شده با"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "ساخت يك صفحه جديد"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "لطفا يك پايگاه داده را انتخاب نماييد."
@@ -10124,7 +10124,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "شرج"
@@ -11232,37 +11232,37 @@ msgstr ""
msgid "Show form"
msgstr "نمايش رنگ"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11271,39 +11271,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11311,21 +11311,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11334,7 +11334,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11344,37 +11344,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11384,8 +11384,8 @@ msgstr ""
msgid "Wrong data"
msgstr "No databases"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11419,21 +11419,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "معتبرسازي SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "نتيجه SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "توليدشده توسط"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11565,7 +11573,7 @@ msgstr "مقدار"
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "جدول %s حذف گرديد"
@@ -11781,45 +11789,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "نمايش جدولها"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "فضاي استفادهشده"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "استفاده"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "موثر"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "آمار سطرها"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "پويا"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "طول سطر"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "اندازه سطر "
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12125,30 +12133,30 @@ msgstr ""
msgid "Create version"
msgstr "نسخه سرور"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "پرس و جوي SQL"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 299b8b6ac9..2185f19438 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-02 10:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: finnish \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Näytä kaikki"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Sivunumero:"
@@ -39,30 +39,30 @@ msgstr ""
"ikkunoiden väliset päivitystoiminnot."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Etsi"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Etsi"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Siirry"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Tietokannan kommentti: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Taulun kommentit"
@@ -124,14 +124,14 @@ msgstr "Taulun kommentit"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Sarake"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Sarake"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tyyppi"
@@ -156,9 +156,9 @@ msgstr "Tyyppi"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Tyhjä"
@@ -168,7 +168,7 @@ msgstr "Tyhjä"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Oletusarvo"
@@ -177,18 +177,18 @@ msgstr "Oletusarvo"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Viittaa sarakkeeseen"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Kommentit"
@@ -199,11 +199,11 @@ msgstr "Kommentit"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Ei"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Kyllä"
msgid "View dump (schema) of database"
msgstr "Tee vedos tietokannasta"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Tietokannassa ei ole tauluja."
@@ -322,8 +322,8 @@ msgstr "Siirry kopioituun tietokantaan"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Relaatioskeeman muokkaus tai vienti"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Relaatioskeeman muokkaus tai vienti"
msgid "Table"
msgstr "Taulu"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Kpl rivejä"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Koko"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "käytössä"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Luotu"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Viimeksi päivitetty"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Viimeksi tarkistettu"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -481,13 +480,13 @@ msgstr "Käytä tauluja"
msgid "SQL query on database %s :"
msgstr "Suorita SQL-kysely tietokannassa %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Suorita kysely"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Käyttö estetty"
@@ -521,8 +520,8 @@ msgstr[0] "%1$s hakutulosta taulussa %2$s "
msgstr[1] "%1$s hakutulosta taulussa %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Selaa"
@@ -598,11 +597,11 @@ msgstr "Näkymä %s on poistettu"
msgid "Table %s has been dropped"
msgstr "Taulu %s on poistettu"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Seuranta on käytössä."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Seuranta ei ole käytössä."
@@ -616,7 +615,7 @@ msgstr ""
"%sohjeista%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Näkymä"
@@ -661,7 +660,7 @@ msgstr "Valitse taulut, joissa on ylijäämää"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -670,17 +669,18 @@ msgid "Export"
msgstr "Vienti"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Tulostusversio"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Tyhjennä"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -723,15 +723,14 @@ msgid "Tracked tables"
msgstr "Seurattavat taulut"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Tietokanta"
@@ -749,7 +748,7 @@ msgstr "Päivitetty"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Tila"
@@ -940,13 +939,13 @@ msgstr "Näytetään kirjanmerkki"
msgid "The bookmark has been deleted."
msgstr "Kirjanmerkki on poistettu."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Tiedostoa ei voi lukea"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -974,7 +973,7 @@ msgstr "Tiedoston merkistöä ei voida muuttaa ilman merkistökirjastoa"
msgid "Could not load import plugins, please check your installation!"
msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Kirjanmerkki %s luotu"
@@ -1001,8 +1000,8 @@ msgstr ""
"tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia loppuun "
"asti ellei PHP:n suoritusaikarajaa nosteta."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1112,9 +1111,9 @@ msgid "Close"
msgstr "Sulje"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Muokkaa"
@@ -1138,7 +1137,7 @@ msgstr "Staattinen data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Yhteensä"
@@ -1149,12 +1148,12 @@ msgid "Other"
msgstr "Toinen"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1237,13 +1236,13 @@ msgid "System swap"
msgstr "Järjestelmän sivutusmuisti"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "Mt"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "kt"
@@ -1301,27 +1300,27 @@ msgid "Connections"
msgstr "Yhteydet"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "tavua"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "Gt"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "Tt"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "Pt"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "Et"
@@ -1361,9 +1360,9 @@ msgstr "Lisää sarjaan vähintään yksi muuttuja"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Ei mitään"
@@ -1550,7 +1549,7 @@ msgstr "Selitä SQL-kysely"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Aika"
@@ -1873,7 +1872,7 @@ msgstr "%d on virheellinen rivinumero."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1887,7 +1886,7 @@ msgstr "Piilota hakukriteerit"
msgid "Show search criteria"
msgstr "Näytä hakukriteerit"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Zoomaushaku"
@@ -2064,7 +2063,7 @@ msgstr "Vaihda salasana"
msgid "More"
msgstr "Lisää"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2151,63 +2150,63 @@ msgid "December"
msgstr "Joulukuu"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Touko"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Joulu"
@@ -2245,32 +2244,32 @@ msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "La"
@@ -2416,11 +2415,11 @@ msgstr ""
"Väärät pääsyasetukset asetustiedostolla, sen ei kuuluisi olla kaikkien "
"kirjoitettavissa!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Fonttikoko"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Liikaa virhesanomia, joitakin ei näytetä."
@@ -2428,13 +2427,13 @@ msgstr "Liikaa virhesanomia, joitakin ei näytetä."
msgid "File was not an uploaded file."
msgstr "Kyseessä ei ollut ladattu tiedosto."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-"
"asetuksen arvon."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2442,37 +2441,37 @@ msgstr ""
"Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-"
"asetuksen arvon."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Tiedosto lähetettiin vain osittain."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Tilapäiskansio puuttuu."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Tiedoston kirjoitus levylle epäonnistui."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Laajennus keskeytti tiedoston lähetyksen."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Tuntematon virhe tiedostoa lähetettäessä."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Virhe siirrettäessä ladattua tiedostoa."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Ladattua (ja siirrettyä) tiedostoa ei voi lukea."
@@ -2486,7 +2485,7 @@ msgstr "Indeksiä ei ole määritelty!"
msgid "Indexes"
msgstr "Indeksit"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2524,46 +2523,46 @@ msgstr ""
"Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee "
"poistaa."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Tietokannat"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Palvelin"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Rakenne"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Lisää rivi"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Toiminnot"
@@ -2644,27 +2643,27 @@ msgstr ""
msgid "Engines"
msgstr "Moottorit"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Virhe"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rivi(ä) muutettu."
msgstr[1] "%1$d rivi(ä) muutettu."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rivi(ä) poistettu."
msgstr[1] "%1$d rivi(ä) poistettu."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2708,46 +2707,46 @@ msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "tuntematon taulun tila: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Lähdetietokanta"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Teemaa %s ei löydy!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Virheellinen tietokanta"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Virheellinen taulun nimi"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Virhe annettaessa taululle %1$s nimeä %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Taulun %s nimi on nyt %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Taulun käyttöliittymäasetuksia ei voitu tallentaa"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2756,7 +2755,7 @@ msgstr ""
"Taulun käyttöliittymäasetuksia ei voitu siivota (katso $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2767,16 +2766,16 @@ msgstr ""
"eivät säily sivun päivittämisen jälkeen. Tarkista onko taulukon rakenne "
"muuttunut."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Kelvollista kuvapolkua teemalle %s ei löytynyt!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Esikatselu ei ole saatavilla."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "käytä tätä"
@@ -2828,7 +2827,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2869,13 +2868,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Luo versio %s kohteesta %s.%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2886,7 +2885,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2904,7 +2903,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2917,7 +2916,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3016,77 +3015,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Luo uusi indeksi"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Rivimerkkijono"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Lokitiedostojen määrä"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3161,7 +3160,7 @@ msgstr "Valitse palvelin"
msgid "Cookies must be enabled past this point."
msgstr "Selaimessa on oltava evästeet päällä tästä lähtien."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3169,7 +3168,7 @@ msgstr ""
"Kirjautuminen ilman salasanaa on kielletty asetuksissa (katso "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3177,8 +3176,8 @@ msgstr ""
"Yhteys on ollut toimettomana %s sekuntia tai kauemmin. Kirjaudu sisään "
"uudestaan."
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL-palvelimelle ei voitu kirjautua"
@@ -3222,18 +3221,18 @@ msgstr "Taulut"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Tietoa"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Ylijäämä"
@@ -3343,8 +3342,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-kysely"
@@ -3354,144 +3353,144 @@ msgstr "SQL-kysely"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL ilmoittaa: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "SQL-tarkistimeen yhdistäminen epäonnistui!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Selitä SQL-kysely"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Älä selitä SQL-kyselyä"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Kätke PHP-koodi"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Näytä PHP-koodi"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Päivitä"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Älä tarkista SQL-kyselyä"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Tarkista SQL-lause"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Tämän kyselyn muokkaus"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Muokkaus"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilointi"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Su"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y klo %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Puuttuva parametri:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Aloitus"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Edellinen sivu"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Seuraava sivu"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Viimeinen sivu"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Siirry tietokantaan "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Vaihda painamalla"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Selaa tietokonettasi:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Valitse verkkopalvelimen lähetyskansiosta %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Lähetettäviä tiedostoja ei ole"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Suorita"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Tulosta"
@@ -3575,68 +3574,68 @@ msgstr "molemmat yltä"
msgid "neither of the above"
msgstr "ei kumpikaan yltä"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Ei ole positiivinen luku"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Ei ole epänegatiivinen luku"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Virheellinen porttinumero"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Virheellinen arvo"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Arvon on oltava yhtä suuri tai pienempi kuin %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Kohteesta %s puuttuu tiedot"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "Ei saatavilla"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" vaatii laajennuksen %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "tuonti ei toimi, puuttuva funktio (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "vienti ei toimi, puuttuva funktio (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL-validaattori ei ole käytössä"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP-laajennusta ei löydy"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "Enintään %s"
@@ -3655,7 +3654,7 @@ msgid "Set value: %s"
msgstr "Aseta arvo: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Palauta oletusarvo"
@@ -3960,7 +3959,7 @@ msgid "Character set of the file"
msgstr "Tiedoston merkistö"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Muoto"
@@ -4059,7 +4058,7 @@ msgstr "Tunniste"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-tyyppi"
@@ -4183,8 +4182,8 @@ msgstr "Mukauta oletusvalintoja"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4622,14 +4621,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Merkkijono, joka jakaa tietokannat eri puutasoille"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Tietokantapuun erotin"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4637,39 +4642,39 @@ msgstr ""
"Vain kevyt versio; näytä tietokannat puuna (puu määritellään alla "
"osoitetulla erottimella)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Näytä tietokannat puuna"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Poista tämä käytöstä, jos haluat nähdä kaikki tietokannat kerralla"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Käytä kevyttä versiota"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Taulupuun enimmäissyvyys"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Merkkijono, joka jakaa taulut eri puutasoille"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Taulupuun erotin"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logon linkin osoite"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4677,42 +4682,42 @@ msgstr ""
"Avaa linkitetty sivu pääikkunassa: ([kbd]main[/kbd]) tai uudessa ikkunassa: "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logon linkin kohde"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Korosta kohdistimen alla oleva palvelin"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Käytä korostusta"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "Seuraamattomat taulut"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
#, fuzzy
#| msgid "imum number of characters used when a SQL query is displayed"
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "Näytettävän SQL-kyselyn enimmäispituus"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4723,22 +4728,22 @@ msgstr ""
"asetetaan FALSE:ksi, saattaa helposti unohtaa kirjata muut palvelimet ulos, "
"mikäli yhteyksiä on muodostettu useisiin palvelimiin."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Poista kaikki evästeet uloskirjauduttaessa"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
"Määritä, onko evästetodennustilassa muistettava edellinen kirjautuminen"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Anna käyttäjänimi"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4750,50 +4755,50 @@ msgstr ""
"ajan ja poistetaan, kun selainikkuna suljetaan. Tätä suositellaan "
"epäluotetuille ympäristöille."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Kirjautumisevästeen tallennus"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Määrittele sekunteina, kuinka pitkään kirjautumiseväste on kelvollinen"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Kirjautumisevästeen kelpoisuus"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Näytettävän SQL-kyselyn enimmäispituus"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Näytettävän SQL-kyselyn enimmäispituus"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Vasemmassa kehyksessä ja tietokantaluettelossa näkyvien tietokantojen "
"enimmäismäärä"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Tietokantoja enintään"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4803,29 +4808,29 @@ msgstr ""
"enemmän rivejä, näytetään "Edellinen"- ja "Seuraava"-"
"linkit."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Näytettävien rivien enimmäismäärä"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Tauluja enintään"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4833,45 +4838,45 @@ msgstr ""
"Skriptin varaama enimmäistavumäärä, esim. [kbd]32M[/kbd] ([kbd]0[/kbd] = ei "
"rajoitusta)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Muistirajoitus"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Lajittele taulu"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Käytä vain kuvakkeita, vain tekstiä tai molempia"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Navigointipalkki, jossa kuvakkeet"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "käytä Gzip-ulostulon puskurointia nopeuttaaksesi HTTP-siirtoja"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip-ulostulon puskurointi"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
#, fuzzy
#| msgid ""
#| "MART[/kbd] - i.e. descending order for fields of type TIME, DATE, ETIME "
@@ -4883,46 +4888,46 @@ msgstr ""
"[kbd]SMART[/kbd] - eli laskeva järjestys kentille, joiden tyyppi on TIME, "
"DATE, DATETIME tai TIMESTAMP; muulloin nouseva järjestys"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Oletuslajittelujärjestys"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Käytä MySQL-tietokantojen jatkuvia yhteyksiä"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Jatkuvat yhteydet"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Kuvakkeellisen taulun toiminnot"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
#, fuzzy
#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Estä BLOB- ja BINARY-kenttien muokkaus"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
#, fuzzy
#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Suojaa binäärikentät"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
#, fuzzy
#| msgid ""
#| " if you want DB-based query history (requires pmadb). If disabled, s "
@@ -4936,119 +4941,119 @@ msgstr ""
"tarvitaan). Jos poistettu käytöstä, tämä käyttää JavaScript-rutiineja "
"kyselyhistorian näyttämisessä (katoaa, kun ikkuna suljetaan)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Pysyvä kyselyhistoria"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Kuinka monta kyselyä historiassa pidetään"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Kyselyhistorian pituus"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Uutta kyselyikkunaa avattaessa näytettävä välilehti"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Oletusarvoinen kyselyikkunavälilehti"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Kyselyikkunan korkeus (pikseleissä)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Kyselyikkunan korkeus"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Kyselyikkunan leveys (pikseleinä)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Kyselyikkunan leveys"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Valitse, mitä funktioita käytetään merkistömuunnoksessa"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Merkistön uudelleenkoodaus"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Nimeä taulu uudelleen"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Korjaa säikeet"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Hakemisto, jonne viennit voi tallentaa palvelimella"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Tallennushakemisto"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Jätä tyhjäksi, jos tätä ei käytetä"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Palvelintodennuksen järjestys"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Käytä oletusarvoja jättämällä tyhjäksi"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Palvelintodennuksen säännöt"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Salli kirjautumiset ilman salasanaa"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Salli pääkäyttäjän kirjautuminen"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5057,19 +5062,19 @@ msgstr ""
"[a@http://swekey.com]SweKey-laitteistotodennuksen[/a] asetustiedoston polku "
"(ei dokumenttijuuressa; suositeltu: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey-asetustiedosto"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Käytettävä todennustyyppi"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Todennustyyppi"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5077,11 +5082,11 @@ msgstr ""
"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"kirjanmerkki[/a]tukea; oletusarvo: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Kirjanmerkkitaulu"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5089,31 +5094,31 @@ msgstr ""
"Jätä tyhjäksi, jos et halua sarakkeiden kommentteja ja mime-tyyppejä; "
"oletusarvo: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Saraketietojen taulu"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Pakkaa MySQL-palvelimen yhteys"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Pakkaa yhteys"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Kuinka palvelimeen yhdistetään; käytä tcp:tä, jos olet epävarma"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Yhteystyyppi"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Hallintakäyttäjän salasana"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5122,31 +5127,31 @@ msgstr ""
"lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/controluser]wikissä"
"[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Hallintakäyttäjä"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Hallintakäyttäjä"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Laske taulujen määrä, kun tietokantaluettelo näytetään"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Laske taulujen määrä"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5154,11 +5159,11 @@ msgstr ""
"Jätä tyhjäksi, jos et halua Suunnittelija-taulua; oletusarvo: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Suunnittelija-taulu"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5167,28 +5172,28 @@ msgstr ""
"virheenjäljittimestä[/a] ja [a@http://bugs.mysql.com/19588]MySQL:n "
"ohjelmavirheistä[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Poista INFORMATION_SCHEMA käytöstä"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Käytettävä PHP-laajennus; mysqli-laajennusta tulisi käyttää, jos sitä tuetaan"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Käytettävä PHP-laajennus"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Piilota tietokannat, jotka vastaavat säännöllistä lauseketta (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Piilota tietokannat"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5196,43 +5201,43 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL-kyselyhistorian taulu"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "MySQL-palvelimen verkkonimi"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Palvelimen verkkonimi"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Uloskirjautumisen verkko-osoite"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Yritä yhdistää ilman salasanaa"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Yhdistä ilman salasanaa"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
#, fuzzy
#| msgid ""
#| "n use MySQL wildcard characters (% and _), escape them if you want use ir "
@@ -5248,30 +5253,30 @@ msgstr ""
"koodinvaihtomerkin, mikäli haluat käyttää niiden todellista ilmentymää; "
"käytä esimerkiksi 'oma\\_db' eikä 'oma_db'."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Näytä vain luetteloidut tietokannat"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Jätä tyhjäksi, jot et käytä config-todennusta"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Config-todennuksen salasana"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF-kaavio: sivujen taulu"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5281,22 +5286,22 @@ msgstr ""
"Katso täydet tiedot aiheesta [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/"
"a]. Jätä tyhjäksi, jos et halua tukea. Oletusarvo: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "tietokannan nimi"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Portti, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä tyhjäksi"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Palvelinportti"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5307,13 +5312,13 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Anna käyttäjänimi"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5321,19 +5326,19 @@ msgstr ""
"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/relation]"
"relaatiolinkki[/a]tukea; oletusarvo: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relaatiotaulu"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Mahdollisten tietokantojen noutoon käytettävä SQL-käsky"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES -käsky"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5341,44 +5346,44 @@ msgstr ""
"Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/"
"a] esimerkit"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Signon-istunnon nimi"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Signon-kirjautumisen verkko-osoite"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Palvelinpistoke, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä "
"tyhjäksi"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Palvelinpistoke"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Yhdistä MySQL-palvelimeen käyttäen SSL-yhteyttä"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Käytä SSL-yhteyttä"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea; oletusarvo: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF-kaavio: taulun koordinaatit"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
#, fuzzy
#| msgid ""
#| "to describe the display fields, leave blank for no support; gested: d]"
@@ -5390,13 +5395,13 @@ msgstr ""
"Taulu, joka kuvaa näyttökentät; jätä tyhjäksi, jos et halua tukea; "
"oletusarvo: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Näyttökenttien taulu"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5407,53 +5412,53 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Eheytä taulu"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Tieto"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
#, fuzzy
#| msgid ""
#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5464,25 +5469,25 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL-kyselyhistorian taulu"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Automaattinen palautuminen"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5493,15 +5498,15 @@ msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Config-todennuksen käyttäjä"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5509,21 +5514,21 @@ msgstr ""
"Käyttäjäystävällinen kuvaus tästä palvelimesta. Jätä tyhjäksi, jos haluat, "
"että tässä lukee sen sijaan palvelimen verkkonimi."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Tämän palvelimen yksityiskohtainen nimi"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "r a user should be displayed a "show all (records)" button"
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Pitääkö käyttäjälle näyttää \"Näytä kaikki (tietueet)\" -painike"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Salli kaikkien rivien näyttäminen"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5533,87 +5538,87 @@ msgstr ""
"todennusta käytettäessä, koska salasana lukee suoraan asetustiedostossa; "
"tämä ei estä saman komennon suorittamista suoraan."
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Näytä salasananvaihtolomake"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Näytä tietokannanluontilomake"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Näytä versiot"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Näytä isäntäpalvelimen tila"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Databases display options"
msgid "Show display direction"
msgstr "Tietokantojen näyttöasetukset"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Näytä avoimet taulut"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Näytä funktiokentät muokkaus- ja liäsystilassa"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Näytä funktiokentät"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Näytä ruudukko"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5621,42 +5626,42 @@ msgstr ""
"Näyät linkki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]-"
"käskyn tulosteeseen"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Näytä phpinfo()-linkki"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Näytä MySQL-palvelimen tarkat tiedot"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Määrittele, pitääkö phpMyAdminin luomat SQL-kyselyt näyttää"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Näytä SQL-kyselyt"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Piilota SQL-kyselykenttä"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "Salli tietokannan ja taulun tilastojen (eli tilankäytön) näyttäminen"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Näytä tilastot"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5664,11 +5669,11 @@ msgstr ""
"Jos työkaluvihjeet ovat päällä ja tietokannan kommentti on asetettu, tämä "
"näyttää kommentin ja oikean nimen"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Näytä tietokannan kommentti, ei nimi"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5680,30 +5685,30 @@ msgstr ""
"['LeftFrameTableSeparator']-asetuksen mukaisesti, jolloin vain kansiota "
"kutsutaan aliaksena, itse taulun nimi pysyy muuttumattomana"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Näytä taulun kommentti, ei nimi"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Näytä taulun kommentit työkaluvihjeissä"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Merkitse käytetyt taulut ja mahdollista lukittuja tauluja sisältävien "
"tietokantojen näyttäminen"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Ohita lukitut taulut"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5713,82 +5718,82 @@ msgstr ""
msgid "Password"
msgstr "Salasana"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Käyttäjänimi"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR-tekstikentän sarakkeet"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR-tekstikentän rivit"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Oletusarvoinen tauluvälilehti"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5800,55 +5805,55 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) -otsakkeeseen, joka tulee "
"välipalvelimelta 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
"Luotettujen välipalvelimien luettelo IP-osoitteden sallimista ja estämistä "
"varten"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Palvelimen hakemisto, jonne tuotavia tiedostoja voi lähettää"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Lähetyshakemisto"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Antaa hakea koko tietokannasta"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Käytä tietokantahakua"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Tarkista uusin versio"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Version tarkistus"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5856,7 +5861,7 @@ msgstr ""
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a]-pakkausta"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5885,87 +5890,87 @@ msgid "Signon authentication"
msgstr "Palvelintodennuksen järjestys"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV käyttäen LOAD DATA -kyselyä"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document -laskentataulukko"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Muu väri"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Tietokannan tulostusvalinnat"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excelin CSV-muoto"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document -teksti"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "MySQL-palvelimeen ei voitu yhdistää"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "MySQL-palvelimeen ei voitu yhdistää"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Tyhjennä käyttäjänimi käytettäessä config-todennustapaa"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Tyhjennä kirjautumisistunnon nimi käytettäessä signon-todennustapaa"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Tyhjennä kirjautumisen verkko-osoite käytettäessä signon-todennustapaa"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Tyhjennä phpMyAdminin hallintakäyttäjä käytettäessä pmadb-kantaa"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"Tyhjennä phpMyAdminin hallintakäyttäjän salasana käytettäessä pmadb-kantaa"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Virheellinen IP-osoite: %s"
@@ -5985,7 +5990,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5995,17 +6000,17 @@ msgstr ""
"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty "
"oikein)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Palvelin ei vastaa"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Lisätiedot..."
@@ -6070,7 +6075,7 @@ msgstr "Luo taulu"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nimi"
@@ -6266,26 +6271,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Merkistön uudelleenkoodaus"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "Luo versio %s kohteesta %s.%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -7066,18 +7071,17 @@ msgid "Display MIME types"
msgstr "Näytä MIME-tyypit"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Palvelin"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Luontiaika"
@@ -7290,15 +7294,7 @@ msgstr "Kaaviolle ei ole tietoja."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-kyselyn tulos"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Luontiympäristö"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)."
@@ -7403,7 +7399,7 @@ msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Taulun nimi"
@@ -7779,7 +7775,7 @@ msgstr "PDF-tiedostojen luonti"
msgid "Displaying Column Comments"
msgstr "Sarakkeiden kommentit näkyvissä"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Selaimen muunnos (transformation)"
@@ -7880,10 +7876,10 @@ msgid "Variable"
msgstr "Muuttuja"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Arvo"
@@ -7946,7 +7942,7 @@ msgstr "Keksi salasana"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, fuzzy, php-format
@@ -7987,8 +7983,8 @@ msgid "Edit event"
msgstr "Muokkaa palvelinta"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Error in Processing Request"
@@ -8053,7 +8049,7 @@ msgstr "Kokonaiset lisäyslauseet"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8109,7 +8105,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
@@ -8199,60 +8195,60 @@ msgstr "Turvallisuus"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Sallii talletettujen rutiinien suorittamisen."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Rutiinit"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funktio"
@@ -8471,7 +8467,7 @@ msgstr "Sisällysluettelo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attribuutit"
@@ -8576,12 +8572,12 @@ msgid "Toggle scratchboard"
msgstr "Näytä/kätke luonnospöytä"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Tuntematon kieli: %1$s."
@@ -8629,7 +8625,7 @@ msgstr "Suorita SQL-kysely(jä) palvelimella %s"
msgid "Run SQL query/queries on database %s"
msgstr "Suorita SQL-kyselyjä tietokannassa %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Tyhjennä"
@@ -8638,11 +8634,11 @@ msgstr "Tyhjennä"
msgid "Columns"
msgstr "Sarakkeet"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Tallenna SQL-kysely"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
@@ -8740,13 +8736,13 @@ msgstr ""
"SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-"
"laajennukset on asennettu. Lisätietoa on %sohjeissa%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "Kohteen %s.%s seuranta on käytössä."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8764,7 +8760,7 @@ msgstr ""
"\") tai heittomerkkiä (\"'\"), laita merkin eteen kenoviiva (esim. '\\\\xyz' "
"tai 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8772,19 +8768,19 @@ msgstr ""
"Syötä oletusarvoihin vain yksi arvo (käyttämättä kenoviivamerkkejä tai "
"lainausmerkkejä) tässä muodossa: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeksi"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Poista sarake/sarakkeet"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8793,11 +8789,11 @@ msgstr ""
"Tietoja saatavilla olevista muunnosvaihtoehdoista ja niiden MIME-tyyppien "
"muunnoksista saa painamalla %smuunnoksen kuvaukset%s -kohtaa"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Muunnosvaihtoehdot"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8808,79 +8804,79 @@ msgstr ""
">Jos tarvitset arvoissa kenoviivaa (\"\\\") tai yksittäistä lainausmerkkiä "
"(\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Ei mitään"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Määritelty:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Perusavain"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Koko teksti"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Jälkeen sarakkeen: %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Lisää sarake/sarakkeita"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Vähintään yksi kenttä on lisättävä."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Tallennusmoottori"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "PARTITION-määritelmä"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operaattori"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Etsi"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9091,13 +9087,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "Could not save configuration"
msgstr "Asetuksia ei voi ladata tai tallentaa"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9107,8 +9103,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP-paketista ei löytynyt yhtään tiedostoa!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Virhe ZIP-paketissa:"
@@ -9310,20 +9306,26 @@ msgstr ""
msgid "No databases"
msgstr "Ei tietokantoja"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Lajittele taulu"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Lajittele taulu"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Luo taulu"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Valitse tietokanta"
@@ -10544,7 +10546,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Mukauta käynnistyssivua"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Tieto"
@@ -11816,13 +11818,13 @@ msgstr "Älä välitä virheistä"
msgid "Show form"
msgstr "Näytä lomake"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Versiota ei voi tarkistaa, koska URL- tai CURL-käärettä ei ole saatavilla."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11830,15 +11832,15 @@ msgstr ""
"Version luku epäonnistui. Verkko on ehkä yhteydettömässä tilassa, tai "
"päivityspalvelin ei vastaa."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Palvelimelta saatiin virheellinen versiomerkkijono."
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Jäsentämättömissä oleva versiomerkkijono"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, fuzzy, php-format
#| msgid ""
#| "e using subversion version, run [kbd]svn update[/kbd] :-)[br]The est ble "
@@ -11850,11 +11852,11 @@ msgstr ""
"Käytössä on subversion-versio, suorita [kbd]svn update[/kbd] :-)[br]Uusin "
"vakaa versio on %s, joka julkaistiin %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Saatavilla ei ole uudempaa vakaata versiota."
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, fuzzy, php-format
#| msgid ""
#| "a@?page=form&formset=features#tab_Security]option[/a] should be abled "
@@ -11877,7 +11879,7 @@ msgstr ""
"palveluntarjoajalle, johon sinun lisäksesi tuhannet käyttäjät ovat "
"yhteydessä."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11886,7 +11888,7 @@ msgstr ""
"Et asettanut blowfish-salausavainta ja evästetodennus on käytössä, joten "
"sinulle luotiin automaattisesti avain; sitä ei tarvitse muistaa."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]Bzip2 compression "
@@ -11899,7 +11901,7 @@ msgstr ""
"purkuun[/a] tarvitaan funktioita (%s), jotka eivät ole käytettävissä tässä "
"järjestelmässä."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11908,13 +11910,13 @@ msgstr ""
"hakemisto ole koko maailman käytettävissä ja etteivät palvelimen muut "
"käyttäjät voi lukea tai kirjoittaa siihen."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, fuzzy, php-format
#| msgid "You should use SSL connections if your web server supports it"
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "SSL-yhteyttä tulisi käyttää, jos verkkopalvelin tukee sitä."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]GZip compression and "
@@ -11927,7 +11929,7 @@ msgstr ""
"purkuun[/a] tarvitaan funktioita (%s), jotka eivät ole käytettävissä tässä "
"järjestelmässä."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11935,7 +11937,7 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Security]Login cookie validity[/a] uld be "
@@ -11950,14 +11952,14 @@ msgstr ""
"suuremmat arvot saattavat johtaa tietoturvariskiin esimerkiksi toisena "
"käyttäjänä esiintymisen muodossa."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, fuzzy, php-format
#| msgid ""
#| " feel this is necessary, use additional protection settings - ?"
@@ -11979,7 +11981,7 @@ msgstr ""
"palveluntarjoajalle, johon sinun lisäksesi tuhannet käyttäjät ovat "
"yhteydessä."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, fuzzy, php-format
#| msgid ""
#| "t the [kbd]config[/kbd] authentication type and included username sword "
@@ -12001,7 +12003,7 @@ msgstr ""
"mode=edit&id=%1$d#tab_Server]Todennustyypiksi[/a] kannattaa asettaa [kbd]"
"cookie[/kbd] tai [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]Zip compression[/a] uires "
@@ -12014,7 +12016,7 @@ msgstr ""
"tarvitaan funktioita (%s), jotka eivät ole käytettävissä tässä "
"järjestelmässä."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]Zip ompression[/requires "
@@ -12027,29 +12029,29 @@ msgstr ""
"tarvitaan funktioita (%s), jotka eivät ole käytettävissä tässä "
"järjestelmässä."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it"
msgid "You should use SSL connections if your database server supports it."
msgstr "SSL-yhteyttä tulisi käyttää, jos verkkopalvelin tukee sitä."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
#, fuzzy
#| msgid "You should use mysqli for performance reasons"
msgid "You should use mysqli for performance reasons."
msgstr "Suorituskykysyistä tulisi käyttää mysqli-laajennusta."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Sallit yhteyden muodostamisen palvelimeen ilman salasanaa."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
#, fuzzy
#| msgid "Key is too short, it should have at least 8 characters"
msgid "Key is too short, it should have at least 8 characters."
msgstr "Avain on liian lyhyt; siinä tulisi olla ainakin 8 merkkiä"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
#, fuzzy
#| msgid " should contain letters, numbers [em]and[/em] special characters"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
@@ -12062,8 +12064,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Ei tietokantoja"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Selaa viitearvoja"
@@ -12097,21 +12099,29 @@ msgstr "Näytetään SQL-kysely"
msgid "Validated SQL"
msgstr "Tarkista SQL-lause"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-kyselyn tulos"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Luontiympäristö"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Taulun \"%s\" indeksien kanssa on ongelmia"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Tunniste"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Taulun %1$s muuttaminen onnistui."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12253,7 +12263,7 @@ msgstr "Arvo"
msgid "Table %s already exists!"
msgstr "Taulu %s on jo olemassa!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Taulu %1$s on luotu."
@@ -12476,45 +12486,45 @@ msgstr "Poista ositus"
msgid "Check referential integrity:"
msgstr "Tarkista viitteiden eheys:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Näytä taulut"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Levytilan käyttö"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Käyttö"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Pätevä"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Rivitilastot"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "staattinen"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynaaminen"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Rivin pituus"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Rivin koko"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12842,33 +12852,33 @@ msgstr "Seuraa näitä tiedon käsittelyn lauseita:"
msgid "Create version"
msgstr "Luo versio"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Piilota hakusanat"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Näytettävien rivien enimmäismäärä"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/po/fr.po b/po/fr.po
index 0ca7fa6159..c25bdd7e0e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-11 18:22+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: none\n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Tout afficher"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Page n° : "
@@ -40,30 +40,30 @@ msgstr ""
"sécurité."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Rechercher"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Rechercher"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Exécuter"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Commentaire sur la base de données: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Commentaires sur la table"
@@ -125,14 +125,14 @@ msgstr "Commentaires sur la table"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Colonne"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Colonne"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Type"
@@ -157,9 +157,9 @@ msgstr "Type"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -169,7 +169,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Défaut"
@@ -178,18 +178,18 @@ msgstr "Défaut"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Relié à"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Commentaires"
@@ -200,11 +200,11 @@ msgstr "Commentaires"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "Non"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Oui"
msgid "View dump (schema) of database"
msgstr "Voir une exportation (schéma) de la base de données"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Aucune table n'a été trouvée dans cette base."
@@ -323,8 +323,8 @@ msgstr "Aller à la base de données copiée"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Éditer ou exporter un schéma relationnel"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "Éditer ou exporter un schéma relationnel"
msgid "Table"
msgstr "Table"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Lignes"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Taille"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "utilisé"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Création"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Dernière modification"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Dernière vérification"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -482,13 +481,13 @@ msgstr "Utiliser les tables"
msgid "SQL query on database %s :"
msgstr "Requête SQL sur la base %s : "
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Exécuter la requête"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Accès refusé"
@@ -522,8 +521,8 @@ msgstr[0] "%1$s correspondance dans la table %2$s "
msgstr[1] "%1$s correspondances dans la table %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Afficher"
@@ -599,11 +598,11 @@ msgstr "La vue %s a été supprimée"
msgid "Table %s has been dropped"
msgstr "La table %s a été effacée"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Le suivi est actif."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Le suivi n'est pas activé."
@@ -617,7 +616,7 @@ msgstr ""
"%sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vue"
@@ -662,7 +661,7 @@ msgstr "Cocher tables avec pertes"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -671,17 +670,18 @@ msgid "Export"
msgstr "Exporter"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Version imprimable"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Vider"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -724,15 +724,14 @@ msgid "Tracked tables"
msgstr "Tables faisant l'objet d'un suivi"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Base de données"
@@ -750,7 +749,7 @@ msgstr "Mis à jour"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "État"
@@ -944,13 +943,13 @@ msgstr "Affichage du signet"
msgid "The bookmark has been deleted."
msgstr "Le signet a été effacé."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Le fichier n'a pu être lu"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -981,7 +980,7 @@ msgstr ""
"Chargement impossible des greffons d'importation, veuillez vérifier votre "
"installation !"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Signet %s créé"
@@ -1008,8 +1007,8 @@ msgstr ""
"signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la "
"limite de temps de PHP ne soit augmentée."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1120,9 +1119,9 @@ msgid "Close"
msgstr "Fermer"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Modifier"
@@ -1146,7 +1145,7 @@ msgstr "Données statiques"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1157,12 +1156,12 @@ msgid "Other"
msgstr "Autres"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1245,13 +1244,13 @@ msgid "System swap"
msgstr "Zone d'échange"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "Mio"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "Kio"
@@ -1309,27 +1308,27 @@ msgid "Connections"
msgstr "Connexions"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "o"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "Gio"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "Tio"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "Pio"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "Eio"
@@ -1369,9 +1368,9 @@ msgstr "Veuillez ajouter au moins une variable à la série"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Aucune"
@@ -1557,7 +1556,7 @@ msgstr "Expliquer les résultats"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Moment"
@@ -1866,7 +1865,7 @@ msgstr "%d n'est pas un numéro de ligne valable."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1880,7 +1879,7 @@ msgstr "Cacher les critères de recherche"
msgid "Show search criteria"
msgstr "Afficher les critères de recherche"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Recherche par zoom"
@@ -2061,7 +2060,7 @@ msgstr "Modifier le mot de passe"
msgid "More"
msgstr "plus"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2148,63 +2147,63 @@ msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Décembre"
@@ -2242,32 +2241,32 @@ msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sam"
@@ -2412,11 +2411,11 @@ msgstr ""
"Permissions sur le fichier de configuration incorrectes, il ne doit pas être "
"en écriture pour tout le monde !"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Taille du texte"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
"Les messages d'erreur sont trop nombreux, certains ne sont pas affichés."
@@ -2425,13 +2424,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr "Le fichier n'était pas un fichier téléversé."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"La taille du fichier téléchargé dépasse la limite permise par la directive "
"upload_max_filesize de php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2439,27 +2438,27 @@ msgstr ""
"La taille du fichier téléchargé dépasse la limite permise par la directive "
"MAX_FILE_SIZE présente dans le formulaire HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Le fichier n'a été que partiellement téléchargé."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Répertoire temporaire manquant."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Erreur lors de l'écriture du fichier sur disque."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Téléchargement arrêté par l'extension."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Erreur inconnue durant le téléchargement."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2467,11 +2466,11 @@ msgstr ""
"Erreur lors du déplacement du fichier téléchargé, voir [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Erreur lors du déplacement du fichier téléversé."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Impossible de lire le fichier téléversé (déplacé)."
@@ -2485,7 +2484,7 @@ msgstr "Aucun index n'est défini !"
msgid "Indexes"
msgstr "Index"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2523,46 +2522,46 @@ msgstr ""
"Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être "
"supprimé."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Bases de données"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serveur"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Structure"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insérer"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Opérations"
@@ -2641,27 +2640,27 @@ msgstr "Plug-ins"
msgid "Engines"
msgstr "Moteurs"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Erreur"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d ligne affectée."
msgstr[1] "%1$d lignes affectées."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d ligne supprimée."
msgstr[1] "%1$d lignes supprimées."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2706,43 +2705,43 @@ msgstr "%s a été désactivé sur ce serveur MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "Statut de table incorrect : "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "La base de données source `%s` n'existe pas !"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "La base de données cible `%s` n'existe pas !"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Nom de base de données invalide"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Nom de table invalide"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Erreur lors du renommage de %1$s en %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "La table %1$s se nomme maintenant %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Impossible de sauvegarder les préférences d'interface de tables"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2751,7 +2750,7 @@ msgstr ""
"Echec lors de la tentative de vidage de la table UI Préférences (voir $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2762,16 +2761,16 @@ msgstr ""
"sera pas persistant après actualisation de cette page. Merci de vérifier si "
"la structure de la table a changé."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Chemin des images inexistant pour le thème %s !"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Prévisualisation non disponible."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "utiliser celui-ci"
@@ -2835,7 +2834,7 @@ msgstr ""
"223 372 036 854 775 808 à 9 223 372 036 854 775 807. Pour les nombres sans "
"signe, c'est de 0 à 18 446 744 073 709 551 615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2890,12 +2889,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Un alias pour BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Une date, la fourchette est de «%1$s» à «%2$s»"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Une combinaison date et heure, la fourchette est de «%1$s» à «%2$s»"
@@ -2909,7 +2908,7 @@ msgstr ""
"«2038-01-09 03:14:07» UTC, en nombre de secondes depuis le moment de "
"référence («1970-01-01 00:00:00» UTC)"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Une heure, la fourchette est de «%1$s» à «%2$s»"
@@ -2930,7 +2929,7 @@ msgstr ""
"Une chaîne de longueur fixe (0-255, 1 par défaut) qui est toujours complétée "
"à droite par des espaces lorsqu'enregistrée"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2948,7 +2947,7 @@ msgstr ""
"stockée avec un préfixe d'un octet indiquant la longueur de la valeur en "
"octets"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3070,36 +3069,33 @@ msgstr "Une collection de polygones"
msgid "A collection of geometry objects of any type"
msgstr "Une collection d'objets de géométrie de tout type"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "Numérique"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Both date and time."
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Contient la date et l'heure"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "Chaîne de caractères"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
"Un nombre entier de 4 octets, avec une fourchette de -2 147 483 648 à 2 147 "
"483 647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3107,24 +3103,24 @@ msgstr ""
"Un nombre entier de 8 octets, avec une fourchette de -9 223 372 036 854 775 "
"808 à 9 223 372 036 854 775 807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
"Une nombre à virgule flottante double précision du type par défaut du système"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "Vrai ou faux"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Un alias pour BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Contient un identificateur universellement unique (UUID)"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
@@ -3132,7 +3128,7 @@ msgstr ""
"Une colonne d'horodatage, la fourchette est de «0001-01-01 00:00:00» UTC à "
"«9999-12-31 23:59:59» UTC; TIMESTAMP(6) peut stocker des microsecondes"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@@ -3140,7 +3136,7 @@ msgstr ""
"Une chaîne de longueur variable (0 - 65 535), utilise un interclassement "
"binaire pour toutes les comparaisons"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
@@ -3148,7 +3144,7 @@ msgstr ""
"Une colonne BLOB d'une longueur maximum de 65 535 (2^16 - 1) octets, stockée "
"avec un préfixe de quatre octets indiquant la longueur de la valeur"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "Une énumération, choisie parmi la liste de valeurs définies"
@@ -3222,7 +3218,7 @@ msgstr "Choix du serveur"
msgid "Cookies must be enabled past this point."
msgstr "Vous devez accepter les cookies pour poursuivre."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3230,14 +3226,14 @@ msgstr ""
"La configuration interdit une connexion sans mot de passe (voir "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Aucune activité depuis %s secondes ou plus, veuillez vous reconnecter"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Connexion au serveur MySQL non permise"
@@ -3281,18 +3277,18 @@ msgstr "Tables"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Données"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Perte"
@@ -3403,8 +3399,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "fr"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Requête SQL"
@@ -3414,145 +3410,145 @@ msgstr "Requête SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL a répondu: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Connexion au validateur SQL impossible !"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Expliquer SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Ne pas expliquer SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Sans source PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Créer source PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Actualiser"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Ne pas valider SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Valider SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Éditer cette requête en place"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "En ligne"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilage"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dim"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%A %d %B %Y à %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s jours, %s heures, %s minutes et %s secondes"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Paramètre manquant : "
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Début"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Précédent"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Suivant"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Aller à la base de données "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Cliquer pour basculer"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Parcourir : "
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
"Choisissez depuis le répertoire de téléchargement du serveur web %s : "
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Le répertoire de transfert est inaccessible"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Aucun fichier n'est disponible pour le transfert"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Exécuter"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Imprimer"
@@ -3636,68 +3632,68 @@ msgstr "tous les choix ci-haut"
msgid "neither of the above"
msgstr "aucun des choix ci-haut"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Nombre non positif"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Nombre non négatif"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Numéro de port invalide"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Valeur incorrecte"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "La valeur doit être égale ou plus petite que %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Données manquantes pour %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "non disponible"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "«%s» requiert l'extension %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "importation impossible, fonction manquante (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "exportation impossible, fonction manquante (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Le validateur SQL est désactivé"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Extension SOAP absente"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maximum %s"
@@ -3717,7 +3713,7 @@ msgid "Set value: %s"
msgstr "Assigner la valeur: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Ramener la valeur par défaut"
@@ -4021,7 +4017,7 @@ msgid "Character set of the file"
msgstr "Jeu de caractères du fichier"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4120,7 +4116,7 @@ msgstr "Clé de l'étiquette"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Type MIME"
@@ -4246,8 +4242,8 @@ msgstr "Personnaliser les options par défaut"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4681,14 +4677,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Nombre minimum de tables pour afficher la boîte de filtre de table"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Nombre minimum de tables pour afficher la boîte de filtre de table"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Chaîne qui sépare les noms de bases de données en niveaux"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Séparateur pour l'arborescence des bases de données"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4696,41 +4698,41 @@ msgstr ""
"En affichage léger; afficher les bases de données en arborescence (déterminé "
"par le séparateur défini plus bas)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Montre les bases de données dans une arborescence"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
"Désactiver ceci si vous désirez voir toutes les bases de données d'un seul "
"coup dans le panneau de navigation"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Active l'affichage léger"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Nombre de niveaux pour l'arborescence des tables"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Chaîne qui sépare les noms de table en niveaux"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Séparateur pour l'arborescence des noms de tables"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "L'URL vers lequel le logo dans le panneau de navigation pointera"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL du lien sous le logo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4738,38 +4740,38 @@ msgstr ""
"Pour la fenêtre principale, ([kbd]main[/kbd]) ou dans une nouvelle fenêtre, "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Fenêtre-cible pour la page ouverte lors d'un clic sur le logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Faire ressortir le nom du serveur dans le panneau de navigation"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Active la surbrillance"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Nombre maximum de tables récentes; mettre 0 pour désactiver"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Tables récemment utilisées"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Nombre maximum de caractères affichés dans toute colonne non numérique en "
"mode Afficher"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Limiter le nombre de caractères dans la colonne"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4778,11 +4780,11 @@ msgstr ""
"Si TRUE, la déconnexion se produit pour tous les serveurs; si FALSE, on se "
"déconnecte seulement du serveur courant."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Détruire tous les cookies à la déconnexion"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4790,11 +4792,11 @@ msgstr ""
"Définit si le nom de l'utilisateur précédent devrait apparaître dans le "
"panneau de connexion en mode cookie"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Se souvenir du nom d'utilisateur"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4806,51 +4808,51 @@ msgstr ""
"conservé que pour la session; ceci est recommandé si l'environnement n'est "
"pas digne de confiance."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Stockage du cookie"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
"Définit pendant combien de temps (en secondes) la connexion demeure valide"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Durée de validité de la connexion en mode cookie"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Doubler la taille de la zone de texte pour les colonnes LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Zone de texte plus grande pour LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Nombre maximum de caractères quand une requête SQL est affichée"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Taille maximum des requêtes SQL affichées"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Les utilisateurs ne peuvent choisir une plus grande valeur"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Nombre maximum de bases de données affichées dans le panneau de gauche et la "
"liste des bases"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Nombre maximum de bases de données"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4861,19 +4863,19 @@ msgstr ""
"« Suivant » et « Précé"
"dent » seront affichés."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Nombre maximum de lignes à afficher"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Nombre maximum de tables affichées dans la liste des tables"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Nombre maximum de tables"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4881,11 +4883,11 @@ msgstr ""
"Désactive l'avertissement par défaut qui est affiché si mcrypt est manquant "
"pour l'authentification par cookie"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "avertissement mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4893,44 +4895,44 @@ msgstr ""
"Le nombre d'octets qu'un script peut allouer, par exemple [kbd]32M[/kbd] "
"([kbd]0[/kbd] signifie illimité)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Limite mémoire"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Il s'agit des liens Modifier, Copier et Effacer"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "À quel endroit afficher les liens pour chaque ligne de données"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
"Utiliser l'ordre naturel pour trier les noms de tables et de bases de données"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Ordre naturel"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Afficher seulement des icônes, seulement du texte ou les deux"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Apparence de la barre de navigation"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "sert à augmenter la vitesse des transferts HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Tampon de sortie GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4938,19 +4940,19 @@ msgstr ""
"[kbd]SMART[/kbd] signifie un ordre décroissant pour les colonnes TIME, DATE, "
"DATETIME et TIMESTAMP, et croissant pour les autres"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Ordre de tri par défaut"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "...au serveur MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Connexions persistantes"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4959,23 +4961,23 @@ msgstr ""
"Désactiver l'avertissement affiché sur la page Structure de bases de données "
"si l'une des tables du stockage de configurations phpMyAdmin est manquante"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tables manquantes pour le stockage de configurations phpMyAdmin"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Icônes pour les actions sur les tables"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Empêche l'édition des colonnes BLOB et BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Protéger les colonnes avec contenu binaire"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4985,115 +4987,115 @@ msgstr ""
"configurations phpMyAdmin). Si désactivé, utilise Javascript pour afficher "
"un historique temporaire (sera perdu à la fermeture de la fenêtre)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Historique permanent des requêtes"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Le nombre de requêtes à conserver dans l'historique"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Taille de l'historique"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "L'onglet affiché à l'ouverture d'une fenêtre de requêtes"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Onglet par défaut pour fenêtre de requêtes"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Hauteur de la fenêtre de requêtes (en pixels)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Hauteur de la fenêtre de requêtes"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Largeur de la fenêtre de requêtes (en pixels)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Largeur de la fenêtre de requêtes"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Détermine quelles fonctions seront utilisées pour effectuer la conversion "
"des caractères"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Moteur de conversion"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "En affichant les tables, l'ordre de tri de chaque table est mémorisé"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Mémoriser l'ordre de tri de la table"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "Répète les en-têtes toutes les X cellules, [kbd]0[/kbd] désactive ceci"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Répéter les en-têtes"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Sauvegarder en une étape tous les éléments modifiés"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
"Répertoire où les exportations peuvent être sauvegardées sur le serveur"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Répertoire de sauvegarde"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Laisser vide si non utilisé"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Ordre d'autorisation des serveurs"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Laisser vide pour la valeur par défaut"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Règles d'autorisation des serveurs"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Permettre les connexions sans fournir de mot de passe"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Permettre une connexion à root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
"Domaine de protection à afficher lors d'une authentification HTTP Basic"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Domaine de protection HTTP"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5103,19 +5105,19 @@ msgstr ""
"l'authentification matérielle Swekey[/a] (ne pas placer sous la racine des "
"documents; suggestion : /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Fichier de configuration SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Type d'authentification"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Type d'authentification"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5123,11 +5125,11 @@ msgstr ""
"Laisser vider pour désactiver le support des [a@http://wiki.phpmyadmin.net/"
"pma/bookmark]signets[/a], suggéré : [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Table pour signets"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5135,33 +5137,33 @@ msgstr ""
"Laisser vider pour désactiver les commentaires sur les colonnes et les types "
"MIME; suggéré : [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Table pour informations sur les colonnes"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Comprime la connexion au serveur MySQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Utiliser le mode compression sur la connexion"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Comment se connecter au serveur, utilisez [kbd]tcp[/kbd] si vous êtes dans "
"le doute"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Type de connexion"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Mot de passe de l'utilisateur de contrôle"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5169,11 +5171,11 @@ msgstr ""
"Un compte MySQL spécial avec des permissions limitées, voir [a@http://wiki."
"phpmyadmin.net/pma/controluser] notre wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Utilisateur de contrôle"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5181,30 +5183,30 @@ msgstr ""
"Un serveur alternatif pour le stockage des configurations; laisser vide pour "
"utiliser le serveur déjà défini"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Serveur de contrôle"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Comptage du nombre de tables en montrant la liste des bases de données"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Comptage des tables"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
"Laisser vider pour désactiver, suggéré : [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Table pour la fonctionnalité Concepteur"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5212,27 +5214,27 @@ msgstr ""
"Voir [a@http://sf.net/support/tracker.php?aid=1849494]ce bogue phpMyAdmin[/"
"a] et [a@http://bugs.mysql.com/19588]ce bogue MySQL[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Empêcher l'accès à INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "Quelle extension PHP utiliser; vous devriez choisir mysqli si possible"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Extension PHP"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Masquer les bases dont le nom correspond à l'expression (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Masquer les bases de données"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5240,23 +5242,23 @@ msgstr ""
"Laisser vider pour désactiver l'historique des requêtes SQL, suggéré : [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tables pour historique des requêtes SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Le nom du serveur sur lequel MySQL est en exécution"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Nom du serveur"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL pour quitter"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5264,19 +5266,19 @@ msgstr ""
"Limite le nombre de préférences de tables qui sont stockées dans la base de "
"données, les entrées les plus anciennes sont automatiquement effacées"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Nombre maximum de préférences de tables à conserver"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Essayer de se connecter sans mot de passe"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Connexion sans mot de passe"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5291,31 +5293,31 @@ msgstr ""
"de liste pour montrer le reste des noms de base de données en ordre "
"alphabétique."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Restreindre la liste des bases de données"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
"Laisser vide si vous n'utilisez pas la méthode d'authentification config"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Mot de passe pour méthode config"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Laisser vider pour désactiver le support des schémas en PDF, suggéré : [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "Table pour décrire les schémas en PDF"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5325,21 +5327,21 @@ msgstr ""
"Voir [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Laisser vider pour "
"désactiver. Suggéré : [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Nom de base de données"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Port sur lequel MySQL est en écoute, laisser vide pour utiliser la valeur "
"par défaut"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Port"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5347,11 +5349,11 @@ msgstr ""
"Laisser vide pour ne pas conserver de manière «persistante» les tables "
"récemment utilisées, valeur suggérée : [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Table récemment utilisée"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5359,19 +5361,19 @@ msgstr ""
"Laisser vider pour désactiver le support [a@http://wiki.phpmyadmin.net/pma/"
"relation]relationnel[/a], suggéré : [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Table relationnelle"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "La commande SQL à utiliser pour acquérir la liste des bases de données"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Commande SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5379,42 +5381,42 @@ msgstr ""
"Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] pour un exemple"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Nom de session pour méthode signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL pour connexion"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Interface de connexion du serveur MySQL, laisser vide pour utiliser la "
"valeur par défaut"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Interface de connexion socket"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Utiliser SSL pour la connexion au serveur MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Utiliser SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr "Laisser vider pour désactiver, suggéré : [kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Table pour coordonnées du schéma en PDF"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5422,11 +5424,11 @@ msgstr ""
"Sert à définir les colonnes descriptives, laisser vide pour désactiver; "
"suggéré : [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Table pour colonnes descriptives"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5434,11 +5436,11 @@ msgstr ""
"Laisser vider pour ne pas conserver les préférences d'interface de tables de "
"manière «persistante», valeur suggérée : [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Table de stockage des préférences d'interface de table"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5446,11 +5448,11 @@ msgstr ""
"Définit si un énoncé DROP DATABASE IF EXISTS sera ajouté en première ligne "
"du journal lors de la création d'une base de données."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Ajouter DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5458,11 +5460,11 @@ msgstr ""
"Définit si un énoncé DROP TABLE IF EXISTS sera ajouté en première ligne du "
"journal lors de la création d'une table."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Ajouter DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5470,21 +5472,21 @@ msgstr ""
"Définit si un énoncé DROP VIEW IF EXISTS sera ajoutée en première ligne dans "
"le journal lors de la création de la vue."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Ajouter DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Définit la liste des énoncés que le mécanisme d'auto-création utilise pour "
"les nouvelles versions."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Énoncés à suivre"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5492,11 +5494,11 @@ msgstr ""
"Laisser vider pour désactiver le suivi des changements SQL, valeur "
"suggérée : [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Table pour le suivi des changements SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5504,11 +5506,11 @@ msgstr ""
"Définit si le mécanisme de suivi crée automatiquement des versions pour les "
"tables et les vues."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Création automatique de versions"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5516,15 +5518,15 @@ msgstr ""
"Laisser vider pour désactiver les préférences utilisateur, valeur suggérée : "
"[kbd]pma_config[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Table de stockage des préférences utilisateur"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Utilisateur pour méthode config"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5532,19 +5534,19 @@ msgstr ""
"Une description conviviale de ce serveur. Laisser vide pour utiliser à la "
"place le nom du serveur."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Nom à afficher pour ce serveur"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Devrait-on montrer un bouton «Tout afficher»"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Permettre l'affichage de toutes les lignes"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5554,47 +5556,47 @@ msgstr ""
"cependant on peut exécuter un changement de mot de passe manuellement avec "
"la commande appropriée"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Afficher le dialogue de changement de mot de passe"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Afficher le formulaire de création de base de données"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Montrer ou cacher une colonne contenant la date de création pour toutes les "
"tables"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Montrer la date de création"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Montrer ou cacher une colonne contenant la date de dernière mise à jour pour "
"toutes les tables"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Montrer la date de dernière mise à jour"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Montrer ou cacher une colonne contenant la date de dernière vérification "
"pour toutes les tables"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Montrer la date de dernière vérification"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5602,11 +5604,11 @@ msgstr ""
"Définit si l'option de direction d'affichage est montrée lorsqu'on affiche "
"le contenu d'une table"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Montrer le sélecteur de direction de l'affichage"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5614,27 +5616,27 @@ msgstr ""
"Définit si les champs des types de données MySQL doivent être affichés en "
"mode modification/insertion"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Montrer les champs de type de données"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "En insertion/édition, montrer la colonne contenant les fonctions"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Montrer les fonctions"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Afficher ou non les explications"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Montrer les explications"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5642,56 +5644,56 @@ msgstr ""
"Montre un lien vers le résultat de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Afficher un lien vers phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Afficher les informations détaillées sur le serveur MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Détermine si les requêtes SQL générées par phpMyAdmin devraient être "
"affichées"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Afficher les requêtes SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Détermine si la boîte de requêtes devrait rester afficher après exécution"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Conserver la boîte de requêtes"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Affiche les statistiques sur les bases de données et les tables (espace "
"utilisé)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Afficher les statistiques"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr "Inverse l'affichage du nom et des commentaires"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
"Affiche le commentaire décrivant la base de données, au lieu de son nom"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5701,30 +5703,30 @@ msgstr ""
"Si défini à [kbd]nested[/kbd], l'alias du nom de table ne sert qu'à "
"subdiviser les tables selon $cfg['LeftFrameTableSeparator']"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Affiche le commentaire de table au lieu de son nom"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Affichage des commentaires de table en infobulle"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Marque les tables utilisées et rend possible l'affichage des bases de "
"données comportant des tables verrouillées"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Saute les tables verrouillées"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Requiert que le validateur SQL soit activé"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5734,7 +5736,7 @@ msgstr "Requiert que le validateur SQL soit activé"
msgid "Password"
msgstr "Mot de passe"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5742,11 +5744,11 @@ msgstr ""
"[strong]Avis:[/strong] l'extension PHP SOAP ou le module PEAR SOAP doit être "
"installé"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Activer le validateur SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5754,21 +5756,21 @@ msgstr ""
"Si vous avez un code d'utilisateur, indiquez-le ici ([kbd]anonymous[/kbd] "
"par défaut)"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Utilisateur"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Un avertissement est affiché sur la page principale si Suhosin est détecté"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Avertissement Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5776,11 +5778,11 @@ msgstr ""
"Taille des zones de texte (colonnes) en mode édition, cette valeur sera "
"augmentée pour les zones SQL (*2) et la fenêtre de requêtes (*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Taille horizontale pour une zone de texte"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5788,32 +5790,32 @@ msgstr ""
"Taille des zones de texte (lignes) en mode édition, cette valeur sera "
"augmentée pour les zones SQL (*2) et la fenêtre de requêtes (*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Taille verticale pour une zone de texte"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
"Titre de la fenêtre de navigateur quand une base de données est choisie"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Titre de la fenêtre de navigateur quand rien n'est choisi"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Titre par défaut"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titre de la fenêtre du navigateur quand un serveur est choisi"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Titre de la fenêtre du navigateur quand une table est choisie"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5825,29 +5827,29 @@ msgstr ""
"Forwarded-For) provient du serveur 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste des serveurs mandataires de confiance en vue de IP allow/deny"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"Répertoire sur le serveur, dans lequel vous téléchargez des fichiers en vue "
"de les importer"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Répertoire de téléchargement"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Permet la recherche dans la base de données au complet"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Permet une recherche dans toute la base de données"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5855,27 +5857,27 @@ msgstr ""
"Si désactivé, les utilisateurs ne peuvent régler aucune des options ci-bas, "
"peu importe la case à cocher à droite"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Active le menu Développeur dans les paramètres"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Vérifier la présence d'une nouvelle version"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Active la vérification de version sur la page principale"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Vérification de version"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5883,7 +5885,7 @@ msgstr ""
"Active la compression [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/"
"a] pour les opérations d'importation et d'exportation"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5904,83 +5906,83 @@ msgid "Signon authentication"
msgstr "Mode d'authentification « signon »"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV via LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Rapide"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Personnalisé"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Options d'exportation des bases de données"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV pour MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Texte Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Impossible d'initialiser la bibliothèque de connexion Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Connexion au serveur Drizzle impossible"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Connexion au serveur MySQL impossible"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"Le code d'utilisateur est vide alors que vous utilisez la méthode config"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Le nom de session signon est vide"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "L'URL de signon est vide"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Le controluser est vide"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Le controlpass est vide"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Adresse IP incorrecte : %s"
@@ -6000,7 +6002,7 @@ msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP."
msgid "possible deep recursion attack"
msgstr "possible attaque récursive"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6008,16 +6010,16 @@ msgstr ""
"Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL "
"local n'est pas correctement configurée)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Le serveur ne répond pas."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
"Veuillez vérifier les privilèges du répertoire contenant la base de données."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Détails..."
@@ -6082,7 +6084,7 @@ msgstr "Nouvelle table"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nom"
@@ -6240,25 +6242,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Conversion de l'encodage : "
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s sous la branche %2$s"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "aucune branche"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Révision Git"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "enregistrée le %1$s par %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "l'auteur était %2$s en date du %1$s"
@@ -6985,18 +6987,17 @@ msgid "Display MIME types"
msgstr "Afficher les types MIME"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Client"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Généré le"
@@ -7220,15 +7221,7 @@ msgstr "Données non disponibles pour visualisation GIS."
msgid "GLOBALS overwrite attempt"
msgstr "Tentative d'écrasement de GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Résultat de la requête SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Généré par"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL a retourné un résultat vide (aucune ligne)."
@@ -7331,7 +7324,7 @@ msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Nom de la table"
@@ -7687,7 +7680,7 @@ msgstr "Génération de schémas en PDF"
msgid "Displaying Column Comments"
msgstr "Commentaires de colonnes"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformation"
@@ -7795,10 +7788,10 @@ msgid "Variable"
msgstr "Variable"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Valeur"
@@ -7861,7 +7854,7 @@ msgstr "Générer un mot de passe"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7898,8 +7891,8 @@ msgid "Edit event"
msgstr "Modifier l'événement"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Erreur dans le traitement de la requête"
@@ -7949,7 +7942,7 @@ msgstr "Suite à l'exécution, conserver"
msgid "Definer"
msgstr "Créateur"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Le définisseur doit suivre le format «utilisateur@machine»"
@@ -8007,7 +8000,7 @@ msgstr ""
"ces problèmes."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Type de procédure invalide : «%s»"
@@ -8078,17 +8071,17 @@ msgstr "Type de sécurité"
msgid "SQL data access"
msgstr "Accès aux données SQL"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Vous devez fournir un nom pour la procédure"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "La direction «%s» fournie pour le paramètre est invalide."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8096,41 +8089,41 @@ msgstr ""
"Vous devez fournir une longueur ou une valeur pour les paramètres de type "
"ENUM, SET, VARCHAR et VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Vous devez fournir un nom et un type pour chacun des paramètres."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Vous devez fournir un type de retour valable pour la procédure."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Vous devez fournir une définition pour la procédure."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d ligne a été affectée par le dernier énoncé de la procédure"
msgstr[1] "%d lignes ont été affectées par le dernier énoncé de la procédure"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Résultats de l'exécution de la procédure %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Exécuter la procédure"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Paramètres de procédure"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Fonction"
@@ -8308,7 +8301,7 @@ msgstr "Table des matières"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attributs"
@@ -8407,12 +8400,12 @@ msgid "Toggle scratchboard"
msgstr "Éditeur visuel"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Langue inconnue: %1$s."
@@ -8458,7 +8451,7 @@ msgstr "Exécuter une ou des requêtes SQL sur le serveur %s"
msgid "Run SQL query/queries on database %s"
msgstr "Exécuter une ou des requêtes SQL sur la base %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Vider"
@@ -8467,11 +8460,11 @@ msgstr "Vider"
msgid "Columns"
msgstr "Colonnes"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Conserver cette requête SQL dans les signets"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Signet visible pour les autres utilisateurs"
@@ -8571,12 +8564,12 @@ msgstr ""
"PHP nécessaires ont bien été installées tel que décrit dans la "
"%sdocumentation%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Le suivi de %s est activé."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8588,7 +8581,7 @@ msgstr ""
"apostrophe (\"'\") dans l'une de ces valeurs, faites-le précéder d'un "
"antislash (par exemple '\\\\xyz' ou 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8596,17 +8589,17 @@ msgstr ""
"Pour les valeurs par défaut, veuillez n'entrer qu'une seule valeur, sans "
"caractère d'échappement ou apostrophes, sous la forme: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Index"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Déplacer une colonne"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8615,11 +8608,11 @@ msgstr ""
"La %sdescription des transformations%s explique les transformations "
"possibles en fonction des types MIME"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Options de transformation"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8631,71 +8624,71 @@ msgstr ""
"ou une apostrophe (\"'\") parmi ces valeurs, faites-le précéder du caractère "
"d'échappement, par exemple '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Données trop longues pour ENUM ou SET ?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Obtenir plus d'espace d'édition"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Aucune"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Tel que défini : "
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primaire"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Texte entier"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "en premier"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "après %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Ajouter %s colonne(s)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Vous devez ajouter au moins une colonne."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Moteur de stockage"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Définition de PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Opérateur"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Recherche dans la table"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Modifier/Insérer"
@@ -8868,11 +8861,11 @@ msgstr ""
"stockage permanent requiert l'installation de %sstockage de configurations "
"phpMyAdmin%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Impossible de sauvegarder la configuration"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8884,8 +8877,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Aucun fichier présent dans l'archive ZIP !"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Erreur rencontrée dans l'archive ZIP : "
@@ -9065,16 +9058,22 @@ msgstr ""
msgid "No databases"
msgstr "Aucune base de données"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtrer par nom de table"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtrer par nom de table"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Nouvelle table"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Choisissez une base de données"
@@ -10245,7 +10244,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Questions depuis le démarrage : %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Information"
@@ -11507,28 +11506,28 @@ msgstr "Ignorer les erreurs"
msgid "Show form"
msgstr "Afficher le formulaire"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Ni CURL ni URL wrapper ne sont disponibles; impossible de chercher une "
"nouvelle version."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr "Échec lors de la vérification de version."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Un numéro de version invalide a été reçu du serveur"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Analyse impossible du numéro de version"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11537,11 +11536,11 @@ msgstr ""
"Vous utilisez une version phpMyAdmin obtenue grâce à git, faites [kbd]git "
"pull[/kbd] :-)[br]La dernière version stable est %s, publiée le %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Aucune version stable plus récente n'est disponible"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11554,7 +11553,7 @@ msgstr ""
"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance"
"%s."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11564,7 +11563,7 @@ msgstr ""
"cookie , alors une clé secrète a été générée pour vous. Elle sert à "
"encrypter les cookies, vous n'avez pas à vous en souvenir."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11573,7 +11572,7 @@ msgstr ""
"La %scompression et décompression Bzip2%s requièrent des fonctions (%s) non "
"disponibles sur ce serveur."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11581,12 +11580,12 @@ msgstr ""
"Assurez-vous que ce répertoire n'est pas accessible par les autres "
"utilisateurs."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Cette %soption%s devrait être activée si votre serveur web le permet."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11595,7 +11594,7 @@ msgstr ""
"La %scompression et décompression GZip%s requièrent des fonctions (%s) non "
"disponibles sur ce serveur."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11607,7 +11606,7 @@ msgstr ""
"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement "
"%d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11617,7 +11616,7 @@ msgstr ""
"plus 1800 secondes (30 minutes). Une valeur plus grande que 1800 pose un "
"risque."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11627,7 +11626,7 @@ msgstr ""
"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity"
"%s doit avoir une valeur plus petite ou égale à celui-ci."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11641,7 +11640,7 @@ msgstr ""
"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y "
"compris, sont connectés."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11656,7 +11655,7 @@ msgstr ""
"suggéré de régler votre %stype d'authentification%s à [kbd]cookie[/kbd] ou "
"[kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11665,7 +11664,7 @@ msgstr ""
"La %scompression Zip%s requiert des fonctions (%s) non disponibles sur ce "
"serveur."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11674,23 +11673,23 @@ msgstr ""
"La %sdécompression Zip%s requiert des fonctions (%s) non disponibles sur ce "
"serveur."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Vous devriez utiliser des connexions SSL si votre serveur le permet."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Il est recommandé d'utiliser mysqli pour des raisons de performance."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Vous permettez les connexions au serveur sans mot de passe."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "La clé doit avoir un minimum de 8 caractères."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"La clé devrait contenir des lettres, des nombres [em]et[/em] des caractères "
@@ -11700,8 +11699,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Données incorrectes"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Afficher les valeurs de la table liée"
@@ -11731,21 +11730,29 @@ msgstr "Affichage de la requête SQL"
msgid "Validated SQL"
msgstr "SQL validé"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Résultat de la requête SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Généré par"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Il y a des problèmes avec les index de la table `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Intitulé"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "La table %1$s a été modifiée avec succès"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Les colonnes ont été déplacées avec succès."
@@ -11865,7 +11872,7 @@ msgstr "Valeurs en Y"
msgid "Table %s already exists!"
msgstr "La table %s existe déjà !"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "La table %1$s a été créée."
@@ -12064,43 +12071,43 @@ msgstr "Supprimer le partitionnement"
msgid "Check referential integrity:"
msgstr "Vérifier l'intégrité référentielle : "
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Affichage des tables"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Espace utilisé"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Espace"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effectif"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistiques"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statique"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamique"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Longueur de ligne"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Taille de la ligne"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Prochain index automatique"
@@ -12390,29 +12397,29 @@ msgstr "Suivre les énoncés de manipulation de données suivants : "
msgid "Create version"
msgstr "Créer une version"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Faites une recherche «par valeur» (passepartout: «% ») sur deux colonnes "
"différentes"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Critères de recherche supplémentaires"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Utiliser cette colonne pour décrire chaque point"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Nombre maximum de lignes de données à utiliser pour le graphique"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Afficher/Modifier les points"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Consignes d'utilisation"
diff --git a/po/gl.po b/po/gl.po
index 80e236d791..4580665fb1 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-04-17 16:56+0200\n"
"Last-Translator: Julio Guerra \n"
"Language-Team: Independant\n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Mostrar todo"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Número de páxina:"
@@ -39,30 +39,30 @@ msgstr ""
"bloqueando as actualizacións entre xanelas."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Buscar"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Buscar"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Ir"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Comentario da base de datos: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Comentarios da táboa"
@@ -124,14 +124,14 @@ msgstr "Comentarios da táboa"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Columna"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Columna"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -156,9 +156,9 @@ msgstr "Tipo"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulo"
@@ -168,7 +168,7 @@ msgstr "Nulo"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Predeterminado"
@@ -177,18 +177,18 @@ msgstr "Predeterminado"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Liga a"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Comentarios"
@@ -199,11 +199,11 @@ msgstr "Comentarios"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Non"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Si"
msgid "View dump (schema) of database"
msgstr "Ver o volcado (esquema) da base de datos"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Non foi posíbel atopar ningunha táboa na base de datos."
@@ -322,8 +322,8 @@ msgstr "Cambiar á base de datos copiada"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Editar ou exportar esquema relacional"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Editar ou exportar esquema relacional"
msgid "Table"
msgstr "Táboa"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Filas"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Tamaño"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "en uso"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Creación"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Última actualización"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Última revisión"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -481,13 +480,13 @@ msgstr "Usar as táboas"
msgid "SQL query on database %s :"
msgstr "Procura tipo SQL na base de datos %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Enviar esta procura"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Denegouse o acceso"
@@ -521,8 +520,8 @@ msgstr[0] "%1$s ocorrencia dentro da táboa %2$s "
msgstr[1] "%1$s ocorrencias dentro da táboa %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Visualizar"
@@ -598,11 +597,11 @@ msgstr "Deixouse a vista %s"
msgid "Table %s has been dropped"
msgstr "Eliminouse a táboa %s"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "O seguemento está activado."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "O seguemento non está activado."
@@ -616,7 +615,7 @@ msgstr ""
"%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vista"
@@ -661,7 +660,7 @@ msgstr "Exceso na comprobación"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -670,17 +669,18 @@ msgid "Export"
msgstr "Exportar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Visualización previa da impresión"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Borrar"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -723,15 +723,14 @@ msgid "Tracked tables"
msgstr "Táboas seguidas"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Base de datos"
@@ -749,7 +748,7 @@ msgstr "Actualizada"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Estado"
@@ -940,13 +939,13 @@ msgstr "A mostrar o marcador"
msgid "The bookmark has been deleted."
msgstr "Eliminouse o marcador."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Non se puido ler o ficheiro"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -976,7 +975,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Non foi posíbel importar as extensións - Comprobe a instalación!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Creouse o marcador %s"
@@ -1003,8 +1002,8 @@ msgstr ""
"normalmente significa que o phpMyAdmin non poderá rematar esta importación a "
"non ser que lle incrementen os limites de tempo de php."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1114,9 +1113,9 @@ msgid "Close"
msgstr "Fechar"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Modificar"
@@ -1140,7 +1139,7 @@ msgstr "Datos estáticos"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1151,12 +1150,12 @@ msgid "Other"
msgstr "Outro"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1235,13 +1234,13 @@ msgid "System swap"
msgstr "Arquivo de intercambio do sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1299,27 +1298,27 @@ msgid "Connections"
msgstr "Conexións"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1359,9 +1358,9 @@ msgstr "Por favor engada polo menos unha variable á serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Ningunha"
@@ -1544,7 +1543,7 @@ msgstr "Explicar saída"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tempo"
@@ -1855,7 +1854,7 @@ msgstr "%d non é un número de fileira válido."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1869,7 +1868,7 @@ msgstr "Ocultar o criterio da procura"
msgid "Show search criteria"
msgstr "Mostrar o criterio da procura"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Procura gráfica"
@@ -2033,7 +2032,7 @@ msgstr "Cambiar contrasinal"
msgid "More"
msgstr "Máis"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2120,63 +2119,63 @@ msgid "December"
msgstr "Decembro"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Xan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Xuño"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Xullo"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dec"
@@ -2214,32 +2213,32 @@ msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Lu"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mé"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Xo"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Ve"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sá"
@@ -2383,11 +2382,11 @@ msgstr "O arquivo de configuración existente (%s) non e lexible."
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Tamaño da letra"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Demasiadas mensaxes de erro, algunhas non se mostraron."
@@ -2395,13 +2394,13 @@ msgstr "Demasiadas mensaxes de erro, algunhas non se mostraron."
msgid "File was not an uploaded file."
msgstr "O ficheiro non foi subido como un ficheiro."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php."
"ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2409,37 +2408,37 @@ msgstr ""
"O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no "
"formulario HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "O ficheiro enviado só se recibiu parcialmente."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Falta un directorio temporal."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Non se puido escribir no disco."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Detívose o envío do ficheiro por causa do engadido."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Erro descoñecido ao enviar o ficheiro."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Erro ao mover o ficheiro enviado. Consulte FAQ 1.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Produciuse un erro ao mover o ficheiro subido."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Non é posíbel ler (mover) o ficheiro subido."
@@ -2453,7 +2452,7 @@ msgstr "Non se definiu ningún índice!"
msgid "Indexes"
msgstr "Índices"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2491,46 +2490,46 @@ msgstr ""
"Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase "
"eliminar un deles."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Bases de datos"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Inserir"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operacións"
@@ -2609,27 +2608,27 @@ msgstr "Extensións"
msgid "Engines"
msgstr "Motores"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Houbo un erro"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d fila afectada."
msgstr[1] "%1$d filas afectadas."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d fila eliminada."
msgstr[1] "%1$d filas eliminadas."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2674,45 +2673,45 @@ msgstr "%s foi desactivado neste servidor de MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "estado da táboa descoñecido: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Base de datos de orixe"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Non se atopou o tema %s!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "A base de datos non é válida"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Nome de táboa non válido"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "A táboa %1$s foi renomeada a %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Non foi posíbel gardar as preferencias de IU da táboa"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2721,7 +2720,7 @@ msgstr ""
"Produciuse un fallo ao limpar as preferencias de IU da táboa (vexa $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2729,16 +2728,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Non hai un camiño válido de imaxe para o tema %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Non se dispón de previsualización."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "cólleo"
@@ -2790,7 +2789,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2831,13 +2830,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Crear versión %1$s de %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2848,7 +2847,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2866,7 +2865,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2879,7 +2878,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2978,77 +2977,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Crear un índice novo"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Cadea de liñas"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial column"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Columna espacial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3122,14 +3121,14 @@ msgstr "Escolla de servidor"
msgid "Cookies must be enabled past this point."
msgstr "A partir de aquí debe permitir cookies."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"A configuración prohibe rexistrarse sen contrasinal (vexa AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3137,8 +3136,8 @@ msgstr ""
"Non se rexistrou actividade ningunha desde hai %s segundos ou máis. Terá que "
"entrar de novo"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Non se dá conectado co servidor de MySQL"
@@ -3182,18 +3181,18 @@ msgstr "Táboas"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Datos"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "De máis (Overhead)"
@@ -3301,8 +3300,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "orde SQL"
@@ -3312,144 +3311,144 @@ msgstr "orde SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Mensaxes do MySQL: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Non se puido conectar a un validador SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Saltar a explicacion de SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "sen código PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Crear código PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Refrescar"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Omitir a validacion de"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validar o SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Edición en liña desta consulta"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "En liña"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Análise do desempeño"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Do"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d de %B de %Y ás %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s días, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Parámetro que falta:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Inicio"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Seguinte"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar à base de datos "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A función %s vese afectada por un erro descoñecido; consulte %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Prema para trocar"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Examine o seu computador:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Seleccionar directorio de subida no servidor web %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Non se pode acceder ao directorio que designou para os envíos"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Non hai arquivos para subir"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Executar"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Imprimir"
@@ -3533,68 +3532,68 @@ msgstr "Todo o anterior"
msgid "neither of the above"
msgstr "Nada do anterior"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Non é un número positivo"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Non é un número negativo"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Non é un número de porto válido"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "O valor é incorrecto"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "O valor debe ser igual o menor a %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Faltan datos de %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "non dispoñible"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "«%s» require a extensión %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "importar non vai funcionar, falta a función (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "exportar non vai funcionar, falta a función (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "O validador SQL está desactivado"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Non se atopou a extensión SOAP"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maximo %s"
@@ -3613,7 +3612,7 @@ msgid "Set value: %s"
msgstr "Poñer como valor: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Volver ao valor por omisión"
@@ -3913,7 +3912,7 @@ msgid "Character set of the file"
msgstr "Conxunto de caracteres do ficheiro"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formato"
@@ -4012,7 +4011,7 @@ msgstr "Chave da etiqueta"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Tipo MIME"
@@ -4138,8 +4137,8 @@ msgstr "Personalizar as opcións por omisión"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4568,14 +4567,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Número m'inimo de táboas que se mostran na caixa de filtro de táboa"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Número m'inimo de táboas que se mostran na caixa de filtro de táboa"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Cadea que separa as bases de datos en tres niveis distintos"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Separador da árbores das bases de datos"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4583,39 +4588,39 @@ msgstr ""
"Só na versión lixeira; mostrar as bases de datos nunha árbore (determinada "
"polo separador que se defina embaixo)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Mostrar as bases de datos nunha árbore"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Desactive isto se quere ver todas as bases de datos ao mesmo tempo"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Empregar a versión lixeira"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Profundidade máxima das táboas"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Cadea que separa as táboas en tres niveis distintos"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Separador da árbore de táboas"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL da ligazón ao logotipo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4623,38 +4628,38 @@ msgstr ""
"Abrir a páxina ligada na xanela principal ([kbd]principal[/kbd]) ou nunha "
"nova ([kbd]nova[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Destino da ligazón do logotipo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Resaltar o servidor que estea por baixo do cursor do rato"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Activar o resaltado"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Número máximo de táboas usadas recentemente; 0 para desactivar"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Táboas usadas recentemente"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Número máximo de caracteres mostrados nunha columna non numérica na vista de "
"exploración"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Limitar os caracteres de columna"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4665,11 +4670,11 @@ msgstr ""
"FALSO fai que sexa máis doado esquecer saír dos outros servidores cando se "
"está conectado a varios servidores."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Eliminar todas as cookies ao saír"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4677,11 +4682,11 @@ msgstr ""
"Definir se se debe lembrar ou non o rexisto previo no modo de autenticación "
"mediante cookies"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Lembrar o nome de usuario"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4693,51 +4698,51 @@ msgstr ""
"existente e que se elimina cando se feche a xanela do navegador. Recoméndase "
"isto para os ambientes que non sexan de confianza."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Almacenar as cookies de rexistro"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Definir por cantos segundos é válida unha cookie"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Validez das cookies de rexistro"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Área de texto maáis grande para LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
"Número máximo de caracteres empregados cando se mostra unha procura SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Lonxitude máxima de SQL que se mostra"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Os usuarios non poden establecer un valor máis alto"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Número máximo de bases de datos que aparecen na moldura da esquerda e na "
"listaxe de bases de datos"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Bases de datos máximas"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4747,29 +4752,29 @@ msgstr ""
"resultados. Se o conxunto de resultados contén máis fileiras, aparecen as "
"ligazóns "Anterior" and "Seguinte"."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Número máximo de fileiras que se mostran"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Número máximo de táboas que se mostran na listaxe de táboas"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Táboas máximas"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "Aviso de mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4777,45 +4782,45 @@ msgstr ""
"O número de bytes que se permite asignar a un script, p.ex. [kbd]32M[/kbd] "
"([kbd]0[/kbd] para non o limitar)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Límite da memoria"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Orde natural"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Empregar só iconas, só texto ou ambos os dous"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Barra de navegación por iconas"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"Empregar un búfer para a saída de GZip para atinxir unha maior velocidade "
"nas transferencias HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Búfer para a saída de GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4823,42 +4828,42 @@ msgstr ""
"[kbd]INTELIXENTE[/kbd] - isto é, orde descendente para os campos do tipo "
"TIME, DATE, DATETIME e TIMESTAMP e ascendente para os demais"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Ordenación por omisión"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Empregar conexións persistentes coas bases de datos MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Conexións persistentes"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Operacións de tábocas con iconas"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Impedira edición dos campos BLOB e BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Protexer os campos binarios"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4868,113 +4873,113 @@ msgstr ""
"Se se desactiva, utiliza rutinas JS para mostrar o historial de procuras "
"(que se perde cando se fecha a xanela)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Historial de procuras permanente"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Cantas procuras se gardan no historial"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Lonxitude do historial de procuras"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "O separador que aparece cando se entra nunha xanela de procuras"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Separador por omisión das xanelas de procuras"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Altura da xanela de procuras"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Altura da xanela de procuras (en pixels)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Ancho da xanela de procuras"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Seleccione as funcións que quere empregar para a conversión dos conxuntos de "
"caracteres"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Motor de recodificación"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Recordar a orde da táboa"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Repetir cabeceiras"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Gardar todas as celdas editadas a vez"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Directorio no que se poden gravar as exportacións no servidor"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Directorio de gardado"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Déixeo en branco se non o vai empregar"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Orden de autenticación do servidor"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Déixeo en branco para o predefinido"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Regras de autorización do servidor"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Permitir rexistrarse sen contrasinal"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Permitir o rexistro de root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Dominio HTTP (Realm)"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -4984,19 +4989,19 @@ msgstr ""
"de hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /"
"etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Ficheiro de configuración SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Método de autenticación que se quere empregar"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Tipo de autenticación"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5004,11 +5009,11 @@ msgstr ""
"Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin."
"net/pma/bookmark]marcadores[/a]; por omisión: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Táboa de marcadores"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5016,31 +5021,31 @@ msgstr ""
"Déixeo en branco se non quere comentarios/tipos mime das columnas; por "
"omisión: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Táboa de información das columnas"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Comprimir a conexión ao servidor de MySQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Comprimir a conexión"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Como ligar co servidor; déixeo como tc se non está segura/a"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Tipo de conexión"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Contrasinal do usuario de control"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5049,29 +5054,29 @@ msgstr ""
"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki"
"[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Usuario de control"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Servidor de control"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Contar as táboas cando se mostre a listaxe de bases de datos"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Contar as táboas"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5079,11 +5084,11 @@ msgstr ""
"Déixeo en branco se non quere empregar Designer; por omisión: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Táboa de Designer"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5092,28 +5097,28 @@ msgstr ""
"Seguidor de erros dePMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do "
"MySQL[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Desactivar o uso de INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"O engadido de PHP que quere empregar; debería empregar mysqli se se admite"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Engadido PHP que empregar"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Acochar as bases de datos que coincidan cunha expresión regular (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Acochar as bases de datos"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5121,41 +5126,41 @@ msgstr ""
"Déixeo en branco se non quere un histórico das procuras SQL; por omisión: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Táboa do historial de procuras SQL query"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Nome da máquina na que se executa o servidor de MySQL"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Nome do servidor"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL de desconexión"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Número máximo de preferencias sobre as táboas a almacenar"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Tentar conectarse sen contrasinal"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Conectarse sen contrasinal"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5169,30 +5174,30 @@ msgstr ""
"de datos, só poña os nomes en orde e use [kbd]*[/kbd] ó final para mostrar o "
"resto en orde alfabética."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Mostrar só as bases de datos listadas"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Déixeo en branco se non vai empregar config auth"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Contrasinal para config auth"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_pdf_pages[/"
"kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF schema: táboa de páxinas"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5203,21 +5208,21 @@ msgstr ""
"completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin"
"[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Nome da base de datos"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Porto polo que está a escoitar o servidor de MySQL server; déixeo en branco "
"para deixar o predefinido"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Porto do servidor"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5225,11 +5230,11 @@ msgstr ""
"Deixeo en blanco para eliminar a \"persistencia\" das táboas utilizadas "
"recentemente entre sesións, suxerido: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Táboa usada recentemente"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5237,19 +5242,19 @@ msgstr ""
"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]"
"ligazóns de relación[/a]; por omisión: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Táboa de relacións"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Comando SQL para obter as bases de datos dispoñíbeis"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Mostrar o orde SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5257,44 +5262,44 @@ msgstr ""
"Vexa os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
"autenticación[/a] se quere un exemplo"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Nome de sesión de rexistro de entrada"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL de rexistro de entrada"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Socket polo que está a escoitar o servidor de MySQL; déixeo en branco para "
"deixar o predefinido"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Socket do servidor"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Activar SSL para a conexión ao servidor de MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Empregar SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_table_coords"
"[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF schema: coordenadas de táboa"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5302,11 +5307,11 @@ msgstr ""
"Táboa para describir a presentacióm dos campos; déixeo en branco para quitar "
"soporte; suxerido: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Mostrar táboa de columnas"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5317,49 +5322,49 @@ msgstr ""
"Déixeo en branco se non quere un histórico das procuras SQL; por omisión: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Táboa de preferencias da interfaz"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Engadir DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Engadir DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Engadir DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Sentencias a seguir"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5367,21 +5372,21 @@ msgstr ""
"Déixeo en branco se non quere un soporte de seguemento das procuras SQL, "
"valor suxerido: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Táboa de soporte de seguemento de procuras SQL query"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Crear versions automáticamente"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5389,15 +5394,15 @@ msgstr ""
"Déixeo en branco se non quere almacenar as preferencias na base de datos; "
"suxerido: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Usuario para config auth"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5405,21 +5410,21 @@ msgstr ""
"Unha descrición lexíbel deste servidor. Déixea en branco para que no seu "
"canto apareza o nome da máquina."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Nome longo deste servidor"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Se se lle debería mostrar un botón "mostrar todos (os rexistros)" "
"ao usuario"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Permitir que se mostren todas as fileiras"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5430,51 +5435,51 @@ msgstr ""
"configuración; isto non limita a capacidade de executar a mesmo orde "
"directamente"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Mostrar o formulario para mudar de contrasinal"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Mostrar o formulario para crear bases de datos"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Mostrar marca temporal de creación"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Mostrar a última revisión da marca temporal"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Mostrar dirección de visualizado"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5482,27 +5487,27 @@ msgstr ""
"Define se os campos tipo deben ser mostrados inicialmente no modo editar/"
"inserir"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Mostrar tipos de campo"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Mostrar os campos de función no modo editar/inserir"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Mostrar os campos de función"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Mostrar axudas ou non"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Mostrar consellos"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5510,44 +5515,44 @@ msgstr ""
"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Mostrar a ligazón a phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Mostrar información detallada do servidor de MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Define se se deben mostrar as procuras SQL xeradas polo phpMyAdmin"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Mostrar as procuras SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Define se a caixa de procuras debe permanecer en pantalla despois da súa "
"execución"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Manter a caixa de procuras ca consulta"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Permitir que se mostren as estatísticas das bases de datos e das táboas (p."
"ex. o uso do espazo)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Mostrar as estatísticas"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5555,11 +5560,11 @@ msgstr ""
"Se as mensaxes estiveren activadas e existir un comentario da base de datos, "
"isto substitúe o comentario polo nome real"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Mostrar o comentario da base de datos no canto do seu nome"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5571,30 +5576,30 @@ msgstr ""
"['LeftFrameTableSeparator'], polo que só o cartafol se chama como o alcume; "
"o nome mesmo da táboa fica sen cambiar"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Mostrar o comentario da táboa no canto do seu nome"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Mostrar os comentarios das táboas nas mensaxes"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Marcar as táboas empregadas e permitir que se mostren as bases de datos con "
"táboas bloqueadas"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Ignorar as táboas bloqueadas"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Require que o validador SQL este habilitado"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5604,77 +5609,77 @@ msgstr "Require que o validador SQL este habilitado"
msgid "Password"
msgstr "Contrasinal"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Hablitador o validador SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Nome de usuario"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Unha advertencia sera mostrada na pantalla principal se Suhosin e detectado"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Aviso de Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Columnas de área de texto"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Fileiras de área de texto"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Título da ventá do navegador cando a base de datos está seleccionada"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Título da ventá do navegador cando non hai nada seleccionado"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Título predeterminado"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Título da ventá do navegador cando un servidor está seleccionado"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Título da ventá do navegador cando unha taboa está seleccionada"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5686,28 +5691,28 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br][kbd]"
"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista de proxies de confianza para permiso/denegación de IP"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"Directorio do servidor ao que se poden enviar os ficheiros que importar"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Directorio de envíos"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Permitir procurar na base de datos completa"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Empregar procuras na base de datos"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5715,28 +5720,28 @@ msgstr ""
"Se está deshabilitada os usuarios non poden establecer ningunha das opcións "
"que hai debaixo, independientemente da caixa á dereita"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Habilitar o separador de desenvolvemento na configuración"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Comprobar cal é a última versión"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Habilitar a comprobación da última versión na páxina principal de phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Comprobación da versión"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5744,7 +5749,7 @@ msgstr ""
"Activar a compresión [a@http://gl.wikipedia.org/wiki/ZIP_(formato de "
"ficheiro)]ZIP[/a] nas operacións de importación e exportación"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5765,89 +5770,89 @@ msgid "Signon authentication"
msgstr "Autenticación Signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV utilizando LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Folla de cálculo Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Rápido"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Personalizada"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opcións de exportación da base de datos"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV (para datos de MS Excel)"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Texto Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Non se puido iniciar a biblioteca de conexión Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Non se puido conectar co servidor Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Non se puido conectar co servidor de MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"Atopouse un nome de usuario baleiro ao empregar o método de autenticación da "
"configuración"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"Atopouse un nome de rexistro da sesión baleiro ao empregar o método de "
"autenticación mediante rexistro de entrada"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"Atopouse un URL de rexistro baleiro ao empregar o método de autenticación "
"mediante rexistro de entrada"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Atopouse un usuario de control de phpMyAdmin baleiro ao empregar pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"Atopouse un contrasinal de control de phpMyAdmin baleiro ao empregar pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "O enderezo IP é incorrecto: %s"
@@ -5867,7 +5872,7 @@ msgstr "Falta a extensión %s. Por favor comprobe a configuración do PHP."
msgid "possible deep recursion attack"
msgstr "posible ataque deep recursion"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5875,16 +5880,16 @@ msgstr ""
"O servidor non responde (ou o socket local do servidor non se configurou "
"correctamente)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "O servidor non responde."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
"Por favor comprobe os privilexios do directorio que contén a base de datos."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detalles..."
@@ -5947,7 +5952,7 @@ msgstr "Crear táboas"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nome"
@@ -6104,26 +6109,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Conversión de codificación:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "committed on %1$s by %2$s"
msgstr "Crear versión %1$s de %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "authored on %1$s by %2$s"
@@ -6847,18 +6852,17 @@ msgid "Display MIME types"
msgstr "Mostrar tipos MIME"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Xerado en"
@@ -7060,15 +7064,7 @@ msgstr "Non se atoparon datos para a visualización GIS."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Resultado SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Xerado por"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)."
@@ -7161,7 +7157,7 @@ msgstr "Conta das columnas inválida na entrada do CSV na liña: %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Nome da táboa"
@@ -7516,7 +7512,7 @@ msgstr "Creación de PDF"
msgid "Displaying Column Comments"
msgstr "A mostrar os comentarios das columnas"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformación do navegador"
@@ -7617,10 +7613,10 @@ msgid "Variable"
msgstr "Variábel"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Valor"
@@ -7683,7 +7679,7 @@ msgstr "Xerar un contrasinal"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7719,8 +7715,8 @@ msgid "Edit event"
msgstr "Editar evento"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Erro procesando a petición"
@@ -7770,7 +7766,7 @@ msgstr "Preservar ó completar"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7824,7 +7820,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Tipo de rutina non válida: \"%s\""
@@ -7895,57 +7891,57 @@ msgstr "Tipo de seguridade"
msgid "SQL data access"
msgstr "Acceso de datos SQL"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Debe proporcionar un nome á rutina"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Debe proporcionar unha definición da rutina."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "resultados da execución da rutina %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Executar rutina"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Parámetros da rutina"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Función"
@@ -8120,7 +8116,7 @@ msgstr "Índice"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributos"
@@ -8219,12 +8215,12 @@ msgid "Toggle scratchboard"
msgstr "conmutar o borrador"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Linguaxe descoñecida: %1$s."
@@ -8270,7 +8266,7 @@ msgstr "Executar procura/s SQL no servidor %s"
msgid "Run SQL query/queries on database %s"
msgstr "Efectuar unha procura SQL na base de datos %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Limpar"
@@ -8279,11 +8275,11 @@ msgstr "Limpar"
msgid "Columns"
msgstr "Columnas"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Gardar esta procura de SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Permitir que calquera usuario poida acceder a este marcador"
@@ -8384,12 +8380,12 @@ msgstr ""
"Non foi posíbel iniciar o comprobador de SQL. Comprobe que ten instalados "
"todos os engadidos de php tal e como se describe na %sdocumentación%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "O seguemento de %s está activado."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8407,7 +8403,7 @@ msgstr ""
"ou aspas simples (\" ' \") entre estes valores, preceda a barra e as aspas "
"de barras invertidas (por exemplo '\\\\xyz' ou 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8415,19 +8411,19 @@ msgstr ""
"Para os valores por omisión, introduza un único valor, sen escapalo con "
"barras ou aspas e empregando este formato: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Índice"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Eliminar columna(s)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8436,11 +8432,11 @@ msgstr ""
"Para unha lista das opcións de transformación dispoñíbeis e as súas "
"transformacións de tipos MIME, prema %sdescricións de transformacións%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opcións de transformación"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8452,72 +8448,72 @@ msgstr ""
"(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra "
"para trás (por exemplo '\\\\xyz' ou 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Datos ENUM ou SET demasiados longos?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Obter máis espacio de edición"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Ninguno"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Como se define:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primaria"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Texto completo"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Despois de %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Engadir %s columna(s)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Debe engadir polo menos unha columna."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Motor de almacenamento"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definición da PARTICIÓN"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operador"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Procura na táboa"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Editar/Inserir"
@@ -8721,11 +8717,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Non se puido gravar a configuración"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8735,8 +8731,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Non se atoparon ficheiros dentro do arquivo ZIP!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Houbo un erro no ficheiro ZIP:"
@@ -8924,16 +8920,22 @@ msgstr ""
msgid "No databases"
msgstr "Non hai ningunha base de datos"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtrar táboas por nome"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtrar táboas por nome"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Crear táboa"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Seleccione unha base de dados"
@@ -10079,7 +10081,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Preguntas dende o inicio: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Informacións"
@@ -11315,14 +11317,14 @@ msgstr "Ignorar os erros"
msgid "Show form"
msgstr "Mostrar o formulario"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Non se dispón do envoltorio URL ou de CURL. Non é posíbel comprobar a "
"versión.."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11330,15 +11332,15 @@ msgstr ""
"Produciuse un fallo ao ler a versión. Talvez está fóra de liña ou o servidor "
"de actualizacións non responde."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Recibiuse unha cadea de versión do servidor que non é válida"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Non se pode analizar a cadea da versión"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11347,11 +11349,11 @@ msgstr ""
"Está a empregar versiónado Git; execute [kbd]git pull[/kbd] :-)[br]A versión "
"estable máis recente é %s, publicada o %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Non existe ningunha versión estábel máis recente"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11365,7 +11367,7 @@ msgstr ""
"basada en IP poderia no ser confiable se o seu IP pertence a un ISP ó que "
"conectados miles de usuarios, incluindoo a vostede."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11375,7 +11377,7 @@ msgstr ""
"cookies, polo que se xerou automaticamente unha chave. Emprégase para cifrar "
"cookies; non a ten que lembrar."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11384,7 +11386,7 @@ msgstr ""
"%sA compresión e decompresión Bzip2%s require funcións (%s) que non están "
"dispoñibles no sistema."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11393,13 +11395,13 @@ msgstr ""
"estea dispoñíbel para todo o mundo e que non o poidan ler ou escribir os "
"demais usuarios do servidor."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"esta %sopción%s debería estar activada se o seu servidor web a soporta."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]GZip compression and "
@@ -11412,7 +11414,7 @@ msgstr ""
"descompresión con GZip[/a] require funcións (%s) que non están dispoñíbeis "
"neste sistema."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11420,7 +11422,7 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Security]Login cookie validity[/a] uld be "
@@ -11435,14 +11437,14 @@ msgstr ""
"superiores a 1800 poden supor un risco de seguranza, como a suplantación de "
"personalidade."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, fuzzy, php-format
#| msgid ""
#| "you feel this is necessary, use additional protection settings - [a@?"
@@ -11464,7 +11466,7 @@ msgstr ""
"fiar se o IP pertence a un ISP ao que estean ligados miles de usuarios, como "
"vostede."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, fuzzy, php-format
#| msgid ""
#| " set the [kbd]config[/kbd] authentication type and included username "
@@ -11486,7 +11488,7 @@ msgstr ""
"[a@?page=servers&mode=edit&id=%1$d#tab_Server]tipo de autenticación[/"
"a] como [kbd]cookie[/kbd] our [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Zip compression[/a] "
@@ -11498,7 +11500,7 @@ msgstr ""
"A [a@?page=form&formset=features#tab_Import_export]compresión con zip[/"
"a] require funcións (%s) que non están dispoñíbeis neste sistema."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Zip decompression[/"
@@ -11510,23 +11512,23 @@ msgstr ""
"A [a@?page=form&formset=features#tab_Import_export]compresión con zip[/"
"a] require funcións (%s) que non están dispoñíbeis neste sistema."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Debería empregar conexións SSL se o admite o servidor web."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Debería empregar mysqli por razóns de rendemento."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Permite ligar co servidor sen contrasinal."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "A chave é curta de máis, debería ter un mínimo de oito caracteres."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"A chave debería conter letras, números [em]e[/em] caracteres especiais."
@@ -11535,8 +11537,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Datos erroneos"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Visualizar valores alleos"
@@ -11566,21 +11568,29 @@ msgstr "Mostrar procura SQL"
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Resultado SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Xerado por"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas cos índices da táboa `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Nome"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Alterouse a táboa %1$s sen problemas"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11700,7 +11710,7 @@ msgstr "Valores Y"
msgid "Table %s already exists!"
msgstr "Xa existe a táboa %s!!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Creouse a táboa %1$s."
@@ -11900,43 +11910,43 @@ msgstr "Eliminar particións"
msgid "Check referential integrity:"
msgstr "Comprobar a integridade das referencias:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Mostrando táboas"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Uso do espazo"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Uso"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efectivo"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Estatísticas da fileira"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "estático"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinámico"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Lonxitude da fileira"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Tamaño da fila"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12229,29 +12239,29 @@ msgstr "Seguir estas declaracións de manipulación de datos:"
msgid "Create version"
msgstr "Crear unha versión"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Facer unha \"consulta de exemplo\" (o comodín é \"%\") para duas columnas "
"diferentes"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Criterios adicionais de busca"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Máximo de filas que aparecen no gráfico"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Como usar"
diff --git a/po/he.po b/po/he.po
index b85269c55a..33697df476 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-04-19 14:33+0200\n"
-"Last-Translator: Yaron Shahrabani \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:18+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: hebrew \n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.9\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "הצגת הכול"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "מספר העמוד:"
@@ -38,30 +38,30 @@ msgstr ""
"האבטחה של הדפדפן שלך מוגדרות כך שיחסמו עדכונים בין חלונות."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "חיפוש"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "חיפוש"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "ביצוע"
@@ -110,8 +110,8 @@ msgid "Database comment: "
msgstr "הערה על מסד הנתונים: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "הערות לטבלה"
@@ -122,14 +122,14 @@ msgstr "הערות לטבלה"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "עמודה"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -137,12 +137,12 @@ msgstr "עמודה"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "סוג"
@@ -154,9 +154,9 @@ msgstr "סוג"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "ריק"
@@ -166,7 +166,7 @@ msgstr "ריק"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "בררת מחדל"
@@ -175,18 +175,18 @@ msgstr "בררת מחדל"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "קישורים אל"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "הערות"
@@ -197,11 +197,11 @@ msgstr "הערות"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -219,12 +219,12 @@ msgstr "לא"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -234,8 +234,8 @@ msgstr "כן"
msgid "View dump (schema) of database"
msgstr "צפייה בשליפה (תבנית) של מסד נתונים"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "לא נמצאו טבלאות במסד הנתונים."
@@ -320,8 +320,8 @@ msgstr "מעבר למסד הנתונים שהועתק"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -339,8 +339,8 @@ msgstr "אחסון התצורה של phpMyAdmin הופסקה. כדי לגלות
msgid "Edit or export relational schema"
msgstr "עריכה או יצוא של תבנית יחסית"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -350,45 +350,44 @@ msgstr "עריכה או יצוא של תבנית יחסית"
msgid "Table"
msgstr "טבלה"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "שורות"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "גודל"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "בשימוש"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "יצירה"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "עדכון אחרון"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "נבדק לאחרונה"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -477,13 +476,13 @@ msgstr "שימוש בטבלאות"
msgid "SQL query on database %s :"
msgstr "שאילתת SQL על מסד הנתונים %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "שליחת שאילתה"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "הגישה נדחתה"
@@ -517,8 +516,8 @@ msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s "
msgstr[1] "%1$s תוצאות בטבלה %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "עיון"
@@ -594,11 +593,11 @@ msgstr "התצוגה %s נשמטה"
msgid "Table %s has been dropped"
msgstr "הטבלה %s נשמטה"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "המעקב פעיל."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "המעקב אינו פעיל."
@@ -610,7 +609,7 @@ msgid ""
msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "תצוגה"
@@ -655,7 +654,7 @@ msgstr "בדיקת טבלאות בעלות תקורה"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -664,17 +663,18 @@ msgid "Export"
msgstr "יצוא"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "תצוגת הדפסה"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "ריקון"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -717,15 +717,14 @@ msgid "Tracked tables"
msgstr "טבלאות במעקב"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "מסד נתונים"
@@ -743,7 +742,7 @@ msgstr "עודכנה"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "מצב"
@@ -932,13 +931,13 @@ msgstr "הצגת סימנייה"
msgid "The bookmark has been deleted."
msgstr "הסימנייה נמחקה."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "לא ניתן לקרוא את הקובץ"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -966,7 +965,7 @@ msgstr "לא ניתן להמיר את קידוד התווים של הקובץ ל
msgid "Could not load import plugins, please check your installation!"
msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "הסימנייה %s נוצרה"
@@ -992,8 +991,8 @@ msgstr ""
"עם זאת, בהרצה האחרונה לא נותחו נתונים כלל, לרוב משמעות הדבר היא ש־phpMyAdmin "
"לא יוכל להשלים יבוא זה אלמלא גבול זמן ההמתנה של ה־php יוגדל."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1104,9 +1103,9 @@ msgid "Close"
msgstr "סגירה"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "עריכה"
@@ -1130,7 +1129,7 @@ msgstr "נתונים סטטיים"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "סה״כ"
@@ -1141,12 +1140,12 @@ msgid "Other"
msgstr "אחר"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1228,13 +1227,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1300,27 +1299,27 @@ msgid "Connections"
msgstr "חיבורים"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1366,9 +1365,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "ללא"
@@ -1555,7 +1554,7 @@ msgstr "הסברת SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "זמן"
@@ -1919,7 +1918,7 @@ msgstr "%d הוא לא מספר שורה תקין."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1935,7 +1934,7 @@ msgstr "שאילתת SQL"
msgid "Show search criteria"
msgstr "שאילתת SQL"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2121,7 +2120,7 @@ msgstr "שינוי סיסמא"
msgid "More"
msgstr "יום שני"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2229,27 +2228,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "ינואר"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "פברואר"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "מרץ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "אפריל"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2257,37 +2256,37 @@ msgid "May"
msgstr "מאי"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "יוני"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "יולי"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "אוגוסט"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "ספטמבר"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "אוקטובר"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "נובמבר"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "דצמבר"
@@ -2336,32 +2335,32 @@ msgid "Sun"
msgstr "יום ראשון"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "יום שני"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "יום שלישי"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "יום רביעי"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "יום חמישי"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "יום שישי"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "שבת"
@@ -2520,11 +2519,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2532,48 +2531,48 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
#, fuzzy
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "יכול להיות הערכה. ראה FAQ 3.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2587,7 +2586,7 @@ msgstr "אין אינדקסים מוגדרים!"
msgid "Indexes"
msgstr "אינדקסים"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2624,46 +2623,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "מאגרי נתונים"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "שרת"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "מבנה"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "הכנסה"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "פעולות"
@@ -2744,20 +2743,20 @@ msgstr ""
msgid "Engines"
msgstr "מנועים"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "שגיאה"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2765,7 +2764,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "לא נבחרו שורות"
msgstr[1] "לא נבחרו שורות"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2811,51 +2810,51 @@ msgstr "%s מובטל על שרת MySQL זה."
msgid "This MySQL server does not support the %s storage engine."
msgstr "שרת MySQL לא תומך במנוע אחסון %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "חפש במסד הנתונים"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "חפש במסד הנתונים"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "טבלה %s שונתה אל %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2863,16 +2862,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "קח זאת"
@@ -2924,7 +2923,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2965,12 +2964,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "גרסת שרת"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2981,7 +2980,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "גרסת שרת"
@@ -2998,7 +2997,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3011,7 +3010,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3110,77 +3109,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "יצירת אינדקס חדש"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "מחרוזת שורה"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "סה\"כ"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3251,20 +3250,20 @@ msgstr "בחירת שרת"
msgid "Cookies must be enabled past this point."
msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "נכשל בכניסה לשרת MySQL"
@@ -3308,18 +3307,18 @@ msgstr "טבלאות"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "נתונים"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "תקורה"
@@ -3424,8 +3423,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "שאילתת SQL"
@@ -3435,86 +3434,86 @@ msgstr "שאילתת SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL אמר: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "הסברת SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "ללא קוד PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "ייצור קוד PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "רענון"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
#, fuzzy
msgid "Skip Validate SQL"
msgstr "בדיקת תקינות SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "בדיקת תקינות SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "מנועים"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "יום ראשון"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "הוספת שדה חדש"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3522,7 +3521,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "התחלה"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3531,7 +3530,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "הקודם"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3540,7 +3539,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "הבא"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3548,44 +3547,44 @@ msgctxt "Last page"
msgid "End"
msgstr "סיום"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "קפיצה אל מאגר נתונים "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
msgid "Select from the web server upload directory %s :"
msgstr "שמירת שרת בתוך תיקיית %s"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "הדפסה"
@@ -3676,72 +3675,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "משתנה"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "קישור לא נמצא"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3760,7 +3759,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4052,7 +4051,7 @@ msgid "Character set of the file"
msgstr "חבילת הקידוד של הקובץ:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "תבנית"
@@ -4164,7 +4163,7 @@ msgstr "מפתח תווית"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "סוג MIME"
@@ -4294,8 +4293,8 @@ msgstr "אפשרויות ייצוא מאגר נתונים"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4734,110 +4733,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "ניתוח טבלה"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4845,453 +4848,453 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "גבולות משאבים"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "שינוי סדר הטבלה לפי"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "חלון שאילתה"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "חלון שאילתה"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "חלון שאילתה"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "שינוי שם טבלה אל"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
#, fuzzy
msgid "Save directory"
msgstr "תיקיית בית של נתונים"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "חיבורים"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "כל שרת מארח"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "אין טבלאות"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "איחוי טבלה"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "אין מאגרי נתונים"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "בחירת שרת"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5300,373 +5303,373 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "מאגר נתונים"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "קוד שרת (ID)"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "ניתוח טבלה"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "תיקון טבלה"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "בחירת שרת"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "מציג הערות עמודה"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "איחוי טבלה"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "משפטים"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "גרסת שרת"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "ראיית מידע PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "אפשרויות ייצוא מאגר נתונים"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "ראיית טבלאות"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "הראה רשת"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "הראה שאילתות שלמות"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "שאילתת SQL"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "סטטיסטיקת שורה"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5674,28 +5677,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5705,81 +5708,81 @@ msgstr ""
msgid "Password"
msgstr "סיסמא"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "שם משתמש:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "הוספת/מחיקת עמודות שדה"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ברירת מחדל"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5787,59 +5790,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5860,82 +5863,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "אפשרויות ייצוא מאגר נתונים"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV עבור MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5955,23 +5958,23 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "השרת אינו מגיב"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6038,7 +6041,7 @@ msgstr "יצירת עמוד חדש"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "שם"
@@ -6224,25 +6227,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "גרסת שרת"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "גרסת שרת"
@@ -6957,18 +6960,17 @@ msgid "Display MIME types"
msgstr "סוגי MIME זמינים"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "מארח"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "זמן ייצור"
@@ -7180,15 +7182,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "תוצאת SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "נוצר ע\"י"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)."
@@ -7283,7 +7277,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7648,7 +7642,7 @@ msgstr "יצירה של קבצי PDF"
msgid "Displaying Column Comments"
msgstr "מציג הערות עמודה"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
#, fuzzy
msgid "Browser transformation"
@@ -7747,10 +7741,10 @@ msgid "Variable"
msgstr "משתנה"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "ערך"
@@ -7809,7 +7803,7 @@ msgstr "ייצור סיסמא"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7847,8 +7841,8 @@ msgid "Edit event"
msgstr "נשלח"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7910,7 +7904,7 @@ msgstr "השלם הכנסות"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7966,7 +7960,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8052,57 +8046,57 @@ msgstr "סוג שאילתה"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
msgid "Execution results of routine %s"
msgstr "מאפשר יצירת שגרות מאוחסנות."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "פונקציה"
@@ -8302,7 +8296,7 @@ msgstr "תוכן עניניים"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "תכונות"
@@ -8411,12 +8405,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "rtl"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8466,7 +8460,7 @@ msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s"
msgid "Run SQL query/queries on database %s"
msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8478,11 +8472,11 @@ msgstr "לוח שנה"
msgid "Columns"
msgstr "שמות עמודה"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "הכנס שאילתת SQL זאת למועדפים"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת"
@@ -8500,7 +8494,7 @@ msgstr ""
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "הראה את שאילתה כאן שוב "
+msgstr "הראה את שאילתה כאן שוב"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8569,12 +8563,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8592,7 +8586,7 @@ msgstr ""
"(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a"
"\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8600,31 +8594,31 @@ msgstr ""
"לערכי ברירת מחדל, אנא הכנס רק ערך בודד, ללא סימני ציטוט או לוכסנים, השתמש "
"בתבנית הזאת : a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "אינדקס"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "הוספת/מחיקת עמודות שדה"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
#, fuzzy
msgid "Transformation options"
msgstr "לתבנית זאת אין אפשרויות"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
#, fuzzy
msgid ""
"Please enter the values for transformation options using this format: 'a', "
@@ -8637,80 +8631,80 @@ msgstr ""
"(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a"
"\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "ללא"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "ראשי"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "לאחר %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "הוספת %s תאים"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "אתה חייב להוסיף לפחות שדה אחד."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "מנוע אחסון"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "פעולות"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "חיפוש"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8838,11 +8832,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8852,8 +8846,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9031,19 +9025,25 @@ msgstr ""
msgid "No databases"
msgstr "אין מאגרי נתונים"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "שינוי סדר הטבלה לפי"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "שינוי סדר הטבלה לפי"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "יצירת עמוד חדש"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "אנא בחר מאגר נתונים"
@@ -9658,7 +9658,7 @@ msgstr "הרשאות ספציפיות-לטבלאות"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "הערה: שמות הרשאות MySQL מובטאות באנגלית "
+msgstr "הערה: שמות הרשאות MySQL מובטאות באנגלית"
#: server_privileges.php:711
msgid "Administration"
@@ -10226,7 +10226,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "משפטים"
@@ -11339,37 +11339,37 @@ msgstr ""
msgid "Show form"
msgstr "ראיית צבע"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11378,39 +11378,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11418,21 +11418,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11441,7 +11441,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11451,37 +11451,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11491,8 +11491,8 @@ msgstr ""
msgid "Wrong data"
msgstr "אין מאגרי נתונים"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11526,21 +11526,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "בדיקת תקינות SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "תוצאת SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "נוצר ע\"י"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "בעיות עם אינדקסים של טבלה `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "תווית"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
msgid "The columns have been moved successfully."
msgstr "%s מסדי נתונים נמחקו בהצלחה."
@@ -11674,7 +11682,7 @@ msgstr "ערך"
msgid "Table %s already exists!"
msgstr "שם המשתמש %s כבר קיים!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "טבלה %s נמחקה"
@@ -11894,45 +11902,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "ראיית טבלאות"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "שימוש מקום"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "שימוש"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "יעיל"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "סטטיסטיקת שורה"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "דינאמי"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "אורך שורה"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "גודל שורה "
+msgstr "גודל שורה"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12241,30 +12249,30 @@ msgstr ""
msgid "Create version"
msgstr "גרסת שרת"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "שאילתת SQL"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index f2e67e0cf3..c428c14e8c 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-03-27 16:58+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: hindi \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "सभी दिखाएँ"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "पृष्ठ संख्या:"
@@ -38,30 +38,30 @@ msgstr ""
"या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "ढूंढें"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "ढूंढें"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "जाएँ"
@@ -111,8 +111,8 @@ msgid "Database comment: "
msgstr "डाटाबेस टिप्पणि: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "टेबल टिप्पणि:"
@@ -123,14 +123,14 @@ msgstr "टेबल टिप्पणि:"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "स्तम्भ"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "स्तम्भ"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "प्रकार/किस्म"
@@ -155,9 +155,9 @@ msgstr "प्रकार/किस्म"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "शून्य"
@@ -167,7 +167,7 @@ msgstr "शून्य"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "तयशुदा"
@@ -176,18 +176,18 @@ msgstr "तयशुदा"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "के लिए लिंक"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "टिप्पणी"
@@ -198,11 +198,11 @@ msgstr "टिप्पणी"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "नहीं"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "हाँ "
msgid "View dump (schema) of database"
msgstr "डेटाबेस का डंप (स्कीमा) नजारा"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "डाटाबेस में कोई टेबल नहीं।"
@@ -323,8 +323,8 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें "
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "संबंधपरक स्कीमा को संपादित
msgid "Table"
msgstr "टेबल "
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "रो"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "आकार"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "उपयोग में है"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "रचना"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "पिछला नवीनीकरण"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "पिछली जाँच"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "टेबल का उपयोग करो"
msgid "SQL query on database %s :"
msgstr "डेटाबेस %s पर SQL क्वरी:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "क्वरी भेजें"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "पहुँच निषेधित"
@@ -525,8 +524,8 @@ msgstr[0] "%s टेबल के अंदर %s मैच हैं."
msgstr[1] "%s टेबल के अंदर %s मैच हैं."
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "ब्राउज़"
@@ -602,11 +601,11 @@ msgstr "द्रश्य %s रद्द किया गया है."
msgid "Table %s has been dropped"
msgstr "टेबल %s को रद्द किया गया है."
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "ट्रैकिंग सक्रिय है"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "ट्रैकिंग सक्रिय नहीं है."
@@ -618,7 +617,7 @@ msgid ""
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "दृश्य"
@@ -663,7 +662,7 @@ msgstr "ओवर्हेअद वाली तालुकाओं को
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -672,17 +671,18 @@ msgid "Export"
msgstr "निर्यात"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "छपाई द्रश्य."
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "खाली"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -725,15 +725,14 @@ msgid "Tracked tables"
msgstr "ट्रैक की गयी टेबलएं"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "डाटाबेस"
@@ -751,7 +750,7 @@ msgstr "अद्यतन"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "स्थिति"
@@ -958,13 +957,13 @@ msgstr "बुकमार्क प्रदर्शित किया जा
msgid "The bookmark has been deleted."
msgstr "यह बुकमार्क हटा दिया गया है"
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "फाइल पढ़ी नहीं जा सकती. "
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -992,7 +991,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "आयात प्लगइन्स नहीं लोड किये जा सके. कृपया अपनी संस्थापना जाँचें."
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "बुकमार्क %s बनाया"
@@ -1017,8 +1016,8 @@ msgstr ""
"पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय "
"सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1135,9 +1134,9 @@ msgid "Close"
msgstr "बंद"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "सम्पादन"
@@ -1165,7 +1164,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "कुल"
@@ -1176,12 +1175,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1272,13 +1271,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1346,27 +1345,27 @@ msgid "Connections"
msgstr "कनेक्शन"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "बैट्स"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1416,9 +1415,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "कोई नहीं"
@@ -1612,7 +1611,7 @@ msgstr "SQL की व्याख्या "
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "समय"
@@ -1977,7 +1976,7 @@ msgstr "%d वैध रो संख्या नहीं है"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1991,7 +1990,7 @@ msgstr "खोज मापदंड छिपाना"
msgid "Show search criteria"
msgstr "खोज मापदंड दिखाना"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2173,7 +2172,7 @@ msgstr "पासवर्ड बदलिये "
msgid "More"
msgstr "अधिक"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2265,63 +2264,63 @@ msgid "December"
msgstr "दिसम्बर"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "मई"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "दिसमबर"
@@ -2362,32 +2361,32 @@ msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "मन्गलवार"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "शनिवार"
@@ -2529,11 +2528,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "फ़ॉन्ट का आकार"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2541,37 +2540,37 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "एक अस्थायी फ़ोल्डर गुम है."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "डिस्क में फ़ाइल लिखने में असफल"
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2579,11 +2578,11 @@ msgstr ""
"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # "
"faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें."
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2597,7 +2596,7 @@ msgstr "परिभाषित सूचकांक नहीं पाए
msgid "Indexes"
msgstr "सूचकांक"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2633,46 +2632,46 @@ msgid ""
"removed."
msgstr "सूचकांक %1$s और %2$s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "डाटाबेस"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "सर्वर"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "संरचना"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "इनसर्ट"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "कार्रवाई"
@@ -2753,27 +2752,27 @@ msgstr ""
msgid "Engines"
msgstr "इंजन"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "त्रुटि"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "एकवचन %1$d रोव प्रभावित"
msgstr[1] "बहुवचन%1$d रोवस प्रभावित"
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "एकवचन%1$d रोव नष्ट"
msgstr[1] "बहुवचन%1$d रोवस नष्ट"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2824,55 +2823,55 @@ msgstr "%s इस MySQL सर्वर के लिए निष्क्र
msgid "This MySQL server does not support the %s storage engine."
msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show master status"
msgid "unknown table status: "
msgstr "मास्टर अवस्था"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "स्रोत डेटाबेस"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "विषयवस्तु %s नहीं मिला है!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "अमान्य डेटाबेस"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "अवैध टेबल नाम"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि."
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "टेबल %s का नाम बदल कर %s रखा गया है."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2880,16 +2879,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "पूर्वावलोकन उपलब्ध नहीं."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "इसे ले लो"
@@ -2941,7 +2940,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2982,13 +2981,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "%s संस्करण बनायें %s.%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2999,7 +2998,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3017,7 +3016,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3030,7 +3029,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3129,77 +3128,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "एक नया इन्डेक्स बनाऐं"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "लाईन समाप्त होता है"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "कुल"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3272,20 +3271,20 @@ msgstr "सर्वर चुनिये"
msgid "Cookies must be enabled past this point."
msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "पासवर्ड के बिना लॉग इन विन्यास से मना किया गया है (AllowNoPassword देखें)."
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s सेकंड के भीतर कोई गतिविधि नहीं है. कृपया फिर से लोगिन करें."
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL सर्वर में प्रवेश नहीं कर सकते"
@@ -3331,18 +3330,18 @@ msgstr "टेबल"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "डाटा"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "जरूरत से ज्यादा"
@@ -3452,8 +3451,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL क्वरी"
@@ -3463,83 +3462,83 @@ msgstr "SQL क्वरी"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL ने कहा: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "SQL वलिदटर से जुड़ने में विफल"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL की व्याख्या "
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL की व्याख्या को छोड़ जाना"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "php कोड के बिना"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP Code बनाओ"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "ताज़ा करना"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL की पुष्टि को छोड़ जाना"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL की पुष्टि करना"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "इस कुएरी की इनलाइन एडिट"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "इनलाइन"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "रूपरेखा"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "रविवार"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y को %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "नियमित कार्य"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3547,7 +3546,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "प्रारंभ"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3556,7 +3555,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "पिछला"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3565,7 +3564,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "अगला"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3573,46 +3572,46 @@ msgctxt "Last page"
msgid "End"
msgstr "आखरी"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" डेटाबेस पर जायें "
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे "
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "चयन करने के लिए क्लिक करें."
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "अपने कंप्यूटर ब्राउज़ करें"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s ; "
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "छापें"
@@ -3698,68 +3697,68 @@ msgstr "ऊपर के दोनों"
msgid "neither of the above"
msgstr "उपरोक्त में से कोई भी नहीं"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "एक सकारात्मक संख्या नहीं"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "गैर-नकारात्मक संख्या नहीं"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "वैध पोर्ट नहीं एक"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "गलत मान"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "मान %s के बराबर या कम"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "%s के लिए डेटा लापता"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "अनुपलब्ध"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" को %s विस्तार की आवश्यकता है"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "आयात काम नहीं करेगा, function (%s) लापता"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "निर्यात काम नहीं करेगा, function (%s) लापता"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL मान्य करता अक्षम है"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP विस्तार नहीं मिला"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "अधिकतम %s"
@@ -3778,7 +3777,7 @@ msgid "Set value: %s"
msgstr "मान निर्धारित: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "मूलभूत मान को बहाल"
@@ -4072,7 +4071,7 @@ msgid "Character set of the file"
msgstr "फ़ाइल का चरित्र सेट"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "प्रारूप"
@@ -4171,7 +4170,7 @@ msgstr "लेबल कुंजी"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME प्रकार"
@@ -4295,8 +4294,8 @@ msgstr "डिफ़ॉल्ट विकल्प अनुकूलित"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4724,93 +4723,99 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "स्ट्रिंग जो डेटाबेस को अलग स्तरों में बांटती है"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "डेटाबेस स्तर अलगानेवाला"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
"केवल प्रकाश संस्करण, एक पेड़ में प्रदर्शित डेटाबेस (नीचे परिभाषित विभाजक द्वारा निर्धारित)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "डेटाबेस को स्तरों की तरह देखियें"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "इस अक्षम करें अगर आप एक ही बार में सभी डेटाबेस देखना चाहते हैं"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "सरल संस्करण का उपयोग"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "अधिकतम टेबल स्तर गहराई"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "स्ट्रिंग जो टेबल को अलग स्तरों में बांटती है"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "टेबल स्तर अलगानेवाला"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "नेविगेशन फ्रेम में URL यहाँ इंगित"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "लोगो लिंक URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "लोगो लिंक लक्ष्य"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "कर्सर के तहत सर्वर पर प्रकाश डाला"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "उजागर सक्षम"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "लापता टेबलएं"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"किसी भी गैर सांख्यिक स्तंभ में दिखाया गया है अक्षरों की अधिकतम संख्या पर विचार ब्राउज़"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "काँलम वर्ण सीमा"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4819,22 +4824,22 @@ msgstr ""
"अगर TRUE, लोगौत सभी सर्वर की कुकी हटा देगा| अगर FALSE, लोगौत सिर्फ वर्तमान सर्वर से "
"होगा| इसे FALSE रखने से सर्वर लोगौत भूल सकते हैं, जब आप ज्यादा सर्वर से कनेक्ट हों "
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "लॉगआउट पर सभी कुकीज़ हटाना"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
"परिभाषित करें कि पिछले लॉगइन या याद किया जाना चाहिए कुकी प्रमाणीकरण मोड में या नहीं"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "याद यूसर नाम"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4845,48 +4850,48 @@ msgstr ""
"चाहिए. 0 मतलब का मूलभूत है कि यह केवल मौजूदा सत्र के लिए रखा जाएगा, और जैसे ही आप "
"ब्राउज़र विंडो को बंद हटा दिया जाएगा. इस गैर विश्वसनीय वातावरण के लिए सिफारिश की है."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "लॉगिन कुकी भंडार"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "परिभाषित करें की एक लोगिन कुकी कितने समय थक मान्य है"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "लॉगिन कुकी वैधता"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "LONGTEXT काँलम के लिए textarea का आकर दुगना करें"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEST के लिए बड़ा आकर"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "SQL प्रदर्शित अधिकतम अक्षर"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "SQL प्रदर्शित अधिकतम लम्बाई"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "यूसरओं एक उच्च मूल्य निर्धारित नहीं कर सकते"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "बाएं नेविगेशन फ्रेम प्रदर्शित डेटाबेस की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "डेटाबेस की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4895,92 +4900,92 @@ msgstr ""
"परिणाम सेट में से प्रदर्शित रों की संख्या, अगर सेट में ज्यादा रो हैं तो "पिछले" और "
""अगला" लिंक दिखाएँ जायेंगे"
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "प्रदर्शित रो की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "अधिकतम सारणी"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr "अगर mcrypt कुकी प्रमाणीकरण अक्षम है डिफ़ॉल्ट चेतावनी रदर्शित होता अक्षम है"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt चेतावनी"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"एक लिपि को कितने बाइट्स दिए जायेंगे, eg. [kbd]32M[/kbd], [kbd]0[/kbd] मतलब असीमित "
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "स्मृति सीमा"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
#, fuzzy
#| msgid "These are Edit, Inline edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links"
msgstr "ये हैं संपादित करें, इनलाइन संपादन, प्रतिलिपि बनाएँ और हटाएँ लिंक"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "टेबल और डेटाबेस नाम सॉर्ट करने के लिए प्राकृतिक व्यवस्था का उपयोग"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "प्राकृतिक आदेश"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "उपयोग चिह्न, पाठ या दोनों"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "प्रतिष्ठित नेविगेशन पट्टी"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "तेज HTTPट्रान्सफर के लिए GZip आउटपुट बफरिंग का उपयोग करें"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip आउटपुट बफरिंग"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "डिफ़ॉल्ट सॉर्ट क्रम"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "MySQL के लिए लगातार कनेक्शन का उपयोग"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "के लिए"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4989,195 +4994,195 @@ msgstr ""
"डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर "
"phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका "
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "चिह्न टेबल ऑपरेटरों"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "BLOB और BINARY काँलम को एडिट नहीं किया जा सकता"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "बाइनरी काँलम की रक्षा"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "स्थायी क्वरी इतिहास"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "इतिहास में कितने क्वरी रखने है"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "क्वरी इतिहास लंबाई"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "टैब प्रदर्शित जब एक क्वेरी विंडो खोलें"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "मूलभूत क्वरी विंडो टैब"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "क्वेरी विंडो ऊंचाई (पिक्सेल्स में)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "क्वेरी विंडो ऊंचाई"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "क्वेरी विंडो चौड़ाई (पिक्सेल्स में)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "क्वेरी विंडो चौड़ाई"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "चरित्र रूपांतरण के लिए functions चुने"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "टेबल का नाम बदलें"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "हर सेल्स बाद हेडर दोहराना, [kbd]0[/kbd] इस सुविधा को निष्क्रिय करें"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "हेडर दोहराना"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "निर्देशिका जहां निर्यात सर्वर पर सहेजा जा सकता है"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "निर्देशिका बचाना"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "इस्तेमाल नहीं तो खाली छोड़ें"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "होस्ट प्राधिकरण आदेश"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "डिफ़ॉल्ट के लिए खाली छोड़ें"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "होस्ट प्राधिकरण नियम"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "पासवर्ड के बिना प्रवेश की अनुमति"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "रूट लॉगिन की अनुमति"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "http दायरे"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey config फाइल"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "प्रमाणीकरण विधि उपयोग करने के लिए"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "प्रमाणीकरण पद्धति का उपयोग"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "बुकमार्क टेबल"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "काँलम जानकारी टेबल"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "MySQL सर्वर कनेक्शन संक्षिप्त करना"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "कनेक्शन संक्षिप्त करना"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "सर्वर से कैसे कनेक्ट करें, [kbd]tcp[/kbd] रखें अगर अनिश्चित"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "कनेक्शन के प्रकार"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "यूसर पासवर्ड नियंत्रण"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5185,68 +5190,68 @@ msgstr ""
"एक विशेष MySQL सर्वर सीमित अनुमति के साथ, ज्यादा जानकारी के लिए [a@http://wiki."
"phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "नियंत्रण यूसर"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "नियंत्रण यूसर"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "डेटाबेस सूची दिखाते समय टेबल गणना करें"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "टेबल गणना"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "डिजाइनर टेबल"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA का उपयोग असमर्थ करें"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "किस PHPएक्सटेंशन का उपयोग करें, अगर समर्थित तो, आपको mysqli चुनना चाहिए"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP विस्तार का उपयोग करें"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "डेटाबेस छिपाना"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5254,43 +5259,43 @@ msgstr ""
"अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL इतिहास क्वेरी टेबल"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "होस्ट नाम जहाँ MySQL सर्वर चल रहा है"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "सर्वर होस्ट नाम"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "लॉगआउट URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "प्रदर्शित टेबल की अधिकतम संख्या"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "पासवर्ड के बिना कनेक्ट करने का प्रयास"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "पासवर्ड के बिना कनेक्ट करें"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5299,48 +5304,48 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "केवल सूचीबद्ध डेटाबेस दिखाएँ"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "अगर विन्यास प्राधिकरण का उपयोग नहीं तो खाली छोड़ दें"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "विन्यास प्राधिकरण के लिए पासवर्ड"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF स्कीमा: पृष्ठों टेबल"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "डेटाबेस नाम"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "MySQL सर्वर किस port पर सुन रहा है: डिफ़ॉल्ट के लिए खाली छोड़"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "सर्वर"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -5350,80 +5355,80 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "याद यूसर नाम"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "संबंध टेबल"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "उपलब्ध डेटाबेस लाने के लिए प्रशन"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES आदेश"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "signon सत्र नाम"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "MySQL किस गर्तिका पर सुन रहा है: डिफ़ॉल्ट के लिए खाली छोड़"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "सर्वर गर्तिका"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "MySQL कनेक्शन के लिए SSL सक्षम करने"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL का उपयोग"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "काँलम टेबल दिखाएँ"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid "blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
@@ -5432,33 +5437,33 @@ msgid ""
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "User preferences storage table"
msgid "UI preferences table"
msgstr "यूसर वरीयताओं की भंडारण टेबल"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "ड्रॉप डेटाबेस जोड़ें"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "ड्रॉप टेबल जोड़ें"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5466,39 +5471,39 @@ msgstr ""
"क्या DROP VIEW IF EXISTS बयान पहली लाइन की तरह जोड़े जायेगा, जब एक दृश्य का लोग बन "
"रहा है"
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "DROP VIEW जोडें"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "बयान ट्रैक करने के लिए"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL क्वरी ट्रैकिंग टेबल"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "स्वतः संस्करण बनाना"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -5508,169 +5513,169 @@ msgid ""
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "यूसर वरीयताओं की भंडारण टेबल"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "विन्यास प्राधिकरण के लिए यूसर"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "इस सर्वर का विवरण, होस्ट नाम दिखने के लिए खाली छोडें"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "इस सर्वर का वाचाल नाम"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "क्या एक उसेर को "show all (rows)" बटन दिखाना है"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "सभी रोयों को प्रदर्शित करने की अनुमति"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "पासवर्ड बदलने के फार्म"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "डेटाबेस बनाने का फार्म"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "अधिक क्रियाएँ दिखाओ"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "मास्टर अवस्था"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "मूलभूत प्रदर्शन दिशा"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "फ़ील्ड प्रकार दिखाएँ"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "ग्रिड दिखाओ"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "phpinfo() लिंक दिखाएँ"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "विस्तृत mysql सर्वर जानकारी"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "क्या phpMyAdmin द्वारा उत्पन SQL प्रशन प्रदर्शित करनी है"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "SQL प्रशन दिखाएँ"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "क्वरी बॉक्स छुपा"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "डेटाबेस और टेबल आँकड़े प्रदर्शित करने की अनुमति दें"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "आँकड़े दिखाएँ"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "डेटाबेस के नाम के बजाय टिप्पणी प्रदर्शित करें"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5678,28 +5683,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "टेबल के नाम के बजाय टिप्पणी प्रदर्शित करें"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "प्रदर्शन टूलटिप्स में टेबल टिप्पणियाँ "
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "बंद टेबलओं को छोड़"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5709,77 +5714,77 @@ msgstr ""
msgid "Password"
msgstr "पासवर्ड"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "SQL मान्य करता सक्षम"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"अगर आप एक कस्टम यूसर हैं,तो यहाँ निर्दिष्ट करें, (defaults to [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "यूसर नाम"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "अगर Suhosin का पता चलता है तो चेतावनी दी जाएगी"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin चेतावनी"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "क्षेत्र रोयाँ"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "ब्राउज़र विंडो का शीर्षक है जब एक डेटाबेस का चयन किया "
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी डेटाबेस का चयन नहीं किया है"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "डिफ़ॉल्ट शीर्षक"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "ब्राउज़र विंडो का शीर्षक है जब एक सर्वर का चयन किया"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी सर्वर का चयन नहीं किया है"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5787,59 +5792,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "विश्वसनीय proxies की सूची IP अनुमति / इनकार के लिए"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "सर्वर पर निर्देशिका जहाँ आप आयात करने के लिए फाइल अपलोड कर सकते हैं"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "अपलोड निर्देशिका"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "संपूर्ण डेटाबेस के अंदर तलाश करने के लिए अनुमति"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "डेटाबेस खोज का प्रयोग"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "सेटिंग्स में डेवलपर टैब को सक्रिय करें"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "नवीनतम संस्करण के लिए जाँच"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "phpMyAdmin के मुख्य पृष्ठ पर नवीनतम संस्करण के लिए जाँच की अनुमति"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "संस्करण की जांच"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5860,84 +5865,84 @@ msgid "Signon authentication"
msgstr "signon प्रमाणीकरण"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "तुरंत"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "कस्टम"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "डेटाबेस निर्यात विकल्प"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV for MX Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "खाली यूसर नाम जब विन्यास प्रमाणीकरण का उपयोग करते हुए"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "गलत IP पता: %s"
@@ -5957,23 +5962,23 @@ msgstr "%s विस्तार गायब है. कृपया अपन
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "सर्वर जवाब नहीं दे रहा"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "विवरण..."
@@ -6038,7 +6043,7 @@ msgstr "टेबल बनायें"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "नाम"
@@ -6190,26 +6195,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "एन्कोडिंग रूपांतरण"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "%s संस्करण बनायें %s.%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6906,18 +6911,17 @@ msgid "Display MIME types"
msgstr "फीचरस दिखाओ"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "होस्ट"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "समय पर बनाया"
@@ -7131,15 +7135,7 @@ msgstr "चार्ट के लिए कोई डेटा नहीं म
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQLपरिणाम"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "द्वारा उत्पन्न"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ने एक खाली परिणाम सेट लोताया"
@@ -7242,7 +7238,7 @@ msgstr "CSV इनपुट में अवैध काँलम गिनत
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "टेबल का नाम"
@@ -7606,7 +7602,7 @@ msgstr "PDFs का निर्माण"
msgid "Displaying Column Comments"
msgstr "काँलम सामग्री प्रदर्शित"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "सामग्री दिखाने"
@@ -7705,10 +7701,10 @@ msgid "Variable"
msgstr "स्थिति"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "मूल्य"
@@ -7767,7 +7763,7 @@ msgstr "पासवर्ड उत्पन्न"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, fuzzy, php-format
@@ -7808,8 +7804,8 @@ msgid "Edit event"
msgstr "सर्वर को संपादित करें"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Error in Processing Request"
@@ -7872,7 +7868,7 @@ msgstr "पूरा इनसर्टस"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7928,7 +7924,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
@@ -8018,60 +8014,60 @@ msgstr "सुरक्षा"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "नियमित कार्य"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -8289,7 +8285,7 @@ msgstr "लेख - सूची"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "विशेषता"
@@ -8396,12 +8392,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
-msgstr "आईटीआर"
+msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "अज्ञात भाषा: %1$s."
@@ -8447,7 +8443,7 @@ msgstr "%s सर्वर पर SQL प्रशन चलेयें"
msgid "Run SQL query/queries on database %s"
msgstr "डाटाबेस %s में SQL प्रशन चलाइये "
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "स्पष्ट"
@@ -8458,11 +8454,11 @@ msgstr "स्पष्ट"
msgid "Columns"
msgstr "कोलम"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "इस SQL-क्वरी को बुकमार्क कीजिये "
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए"
@@ -8548,13 +8544,13 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "ट्रैकिंग सक्रिय है"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8562,36 +8558,36 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "सूची"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "काँलम हटाना"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "परिवर्तन के विकल्प"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8599,79 +8595,79 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM या SET डेटा बहुत लंबा है"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "अधिक संपादन स्थान की जरूरत"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "No"
msgctxt "for default"
msgid "None"
msgstr "डिफ़ॉल्ट के लिए"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "जैसे परिभाषित:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "प्राथमिक"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "प्राथमिक"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s के बाद"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s क्षेत्र जोडें"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "ऑपरेटर"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "ढूंढें"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8799,11 +8795,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "विन्यास सहेज नहीं सकते"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8813,8 +8809,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ज़िप संग्रह के अंदर कोई फाइल नहीं मिली"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ज़िप संग्रह में त्रुटि"
@@ -8987,20 +8983,26 @@ msgstr ""
msgid "No databases"
msgstr "कोइ डाटाबेस नहिं"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "टेबल क्रमांक को बदलिये "
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "टेबल क्रमांक को बदलिये "
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create a page"
msgctxt "short form"
msgid "Create table"
msgstr "नया पेज़ बनाऐं"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "कृपया एक डाटाबेस चुनिये "
@@ -10162,7 +10164,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "स्टार्टअप पेज अनुकूलित करें"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "रो आँकड़े"
@@ -11279,37 +11281,37 @@ msgstr "त्रुटियों उपेक्षा"
msgid "Show form"
msgstr "फार्म दिखाएँ"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "सर्वर से अवैध संस्करण स्ट्रिंग प्राप्त हुई"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "संस्करण स्ट्रिंग को पारस नहीं किया जा सकता"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "कोई नए स्थिर संस्करण उपलब्ध नहीं है"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11318,39 +11320,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11358,21 +11360,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11381,7 +11383,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11391,39 +11393,39 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it."
msgid "You should use SSL connections if your database server supports it."
msgstr "आप SSL कनेक्शन का उपयोग करें अगर आपका वेब सर्वर इसका समर्थन करता है"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "प्रदर्शन कारणों के लिए mysqli का उपयोग करना चाहिए"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "पासवर्ड के बिना सर्वर से कनेक्ट करने के लिए अनुमति"
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "कुंजी बहुत छोटा है, इसमें कम से कम 8 वर्ण होने चाहिए"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11433,8 +11435,8 @@ msgstr ""
msgid "Wrong data"
msgstr "कोइ डाटाबेस नहिं"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "विदेशी मूल्य ब्राउस करें "
@@ -11466,21 +11468,29 @@ msgstr "SQL क्वेरी शो"
msgid "Validated SQL"
msgstr "SQL मान्य"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQLपरिणाम"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "द्वारा उत्पन्न"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "लेबल"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Table %1$s has been altered successfully"
msgid "The columns have been moved successfully."
@@ -11620,7 +11630,7 @@ msgstr "मूल्य"
msgid "Table %s already exists!"
msgstr "%s टेबल पहले से मौजूद है"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "%1$s टेबल बना दिया गया है"
@@ -11833,45 +11843,45 @@ msgstr "विभाजन हटायें"
msgid "Check referential integrity:"
msgstr "Referential अखंडता की जाँच करें"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "टेबल दिखाओ"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "स्थान उपयोग"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "उपयोग"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "वास्तविक"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "पंक्ति आँकड़े"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "स्थिर"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "गतिशील"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "रौ की लंबाई"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "रौ का आकार"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12181,31 +12191,31 @@ msgstr "डेटा आपरेशन पर नज़र रखना"
msgid "Create version"
msgstr "संस्करण बनाएँ"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "खोज मापदंड छिपाना"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "प्रदर्शित रो की अधिकतम संख्या"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/po/hr.po b/po/hr.po
index cd5448c874..f30bbb396a 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-03 09:52+0100\n"
-"Last-Translator: Nikola Vojković \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:21+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: croatian \n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.0.1\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Prikaži sve"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Broj stranice:"
@@ -40,30 +40,30 @@ msgstr ""
"za blokiranje ažuriranja preko više prozora."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Traži"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Traži"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kreni"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Komentar baze podataka: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentari tablice"
@@ -125,16 +125,16 @@ msgstr "Komentari tablice"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Nazivi stupaca"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -142,12 +142,12 @@ msgstr "Nazivi stupaca"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Vrsta"
@@ -159,9 +159,9 @@ msgstr "Vrsta"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -171,7 +171,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Zadano"
@@ -180,18 +180,18 @@ msgstr "Zadano"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Povezano s"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentari"
@@ -202,11 +202,11 @@ msgstr "Komentari"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -224,12 +224,12 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -239,8 +239,8 @@ msgstr "Da"
msgid "View dump (schema) of database"
msgstr "Prikaži ispis (shemu) baze podataka"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "U bazi podataka nisu pronađene tablice."
@@ -330,8 +330,8 @@ msgstr "Prebaci se na kopiranu bazu podataka"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -356,8 +356,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Shema relacija"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -367,45 +367,44 @@ msgstr "Shema relacija"
msgid "Table"
msgstr "Tablica"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Redaka"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Veličina"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "u upotrebi"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Izrada"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Posljednje ažuriranje"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Posljednja provjera"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -500,13 +499,13 @@ msgstr "Upotrijebi tablice"
msgid "SQL query on database %s :"
msgstr "SQL upit nad bazom podataka %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Podnesi upit"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Pristup odbijen"
@@ -541,8 +540,8 @@ msgstr[0] "%s poklapanja unutar tablice %s "
msgstr[1] "%s poklapanja unutar tablice %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Pretraživanje"
@@ -628,11 +627,11 @@ msgstr "Index %s je ispušten"
msgid "Table %s has been dropped"
msgstr "Tablica %s je odbačen"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -645,7 +644,7 @@ msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Prikaz"
@@ -690,7 +689,7 @@ msgstr "Provjeri za prepunjene tablice"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -699,17 +698,18 @@ msgid "Export"
msgstr "Izvoz"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Prikaz ispisa"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Isprazni"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -758,15 +758,14 @@ msgid "Tracked tables"
msgstr "Provjeri tablicu"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Baza podataka"
@@ -786,7 +785,7 @@ msgstr "Ažurirano"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Stanje"
@@ -996,13 +995,13 @@ msgstr "Prikazivanje oznake"
msgid "The bookmark has been deleted."
msgstr "Favorit je izbrisan."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Datoteku nije moguće pročitati"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1031,7 +1030,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Izrađen je favorit %s"
@@ -1058,8 +1057,8 @@ msgstr ""
"znači da phpMyAdmin neće biti u mogućnosti završiti ovaj uvoz sve dok ne "
"povećate vremenska ograničenja unutar php."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1186,9 +1185,9 @@ msgid "Close"
msgstr "Zatvori"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Uređivanje"
@@ -1215,7 +1214,7 @@ msgstr "Statički podatci"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ukupno"
@@ -1226,12 +1225,12 @@ msgid "Other"
msgstr "Ostalo"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1323,13 +1322,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "kB"
@@ -1397,27 +1396,27 @@ msgid "Connections"
msgstr "Veze"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1465,9 +1464,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "bez kompresije"
@@ -1657,7 +1656,7 @@ msgstr "Objasni SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Vrijeme"
@@ -1864,7 +1863,7 @@ msgstr "Dodavanje primarnog ključa"
#: pmd_general.php:609 pmd_general.php:685 pmd_general.php:739
#: pmd_general.php:802
msgid "OK"
-msgstr "U redu "
+msgstr "U redu"
#: js/messages.php:242
msgid "Click to dismiss this notification"
@@ -2027,7 +2026,7 @@ msgstr "%d nije valjani broj retka."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2043,7 +2042,7 @@ msgstr "SQL upit"
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2144,7 +2143,7 @@ msgstr ""
#: js/messages.php:348
msgid "Add an option for column "
-msgstr "Dodaj opciju stupcu"
+msgstr "Dodaj opciju stupcu "
#: js/messages.php:351
msgid "Press escape to cancel editing"
@@ -2230,7 +2229,7 @@ msgstr "Promijeni lozinku"
msgid "More"
msgstr "Pon"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2340,27 +2339,27 @@ msgid "December"
msgstr "Prosinac"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Sij"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Velj"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Ožu"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2368,37 +2367,37 @@ msgid "May"
msgstr "Svi"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Srp"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Kol"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Ruj"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Pro"
@@ -2447,32 +2446,32 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sub"
@@ -2634,11 +2633,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Veličina fonta"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Previše poruka o greškama, neke nisu prikazane"
@@ -2646,13 +2645,13 @@ msgstr "Previše poruka o greškama, neke nisu prikazane"
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina "
"datoteke) u datoteci php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2660,37 +2659,37 @@ msgstr ""
"Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), "
"određenu u HTML obliku."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Učitana datoteka bila je djelomično učitana."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Nedostaje mapa privremene pohrane."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Zapisivanje datoteke na disk nije uspjelo."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Nepoznata pogreška tijekom učitavanja datoteke."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Greška prilikom premještanja datoteke"
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2704,7 +2703,7 @@ msgstr "Nema definiranog indeksa!"
msgid "Indexes"
msgstr "Indeksi"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2741,46 +2740,46 @@ msgid ""
msgstr ""
"Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Baze podataka"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Poslužitelj"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Strukturu"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Umetni"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operacije"
@@ -2861,13 +2860,13 @@ msgstr "Dodatci"
msgid "Engines"
msgstr "Pogoni"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Pogreška"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -2875,7 +2874,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "Zahvaćeno redaka: %1$d."
msgstr[1] "Zahvaćeno redaka: %1$d."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -2883,7 +2882,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Izbrisano redaka: %1$d."
msgstr[1] "Izbrisano redaka: %1$d."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -2933,54 +2932,54 @@ msgstr "%s je onemogućen za ovaj MySQL poslužitelj."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Prikaži stanje potčinjenog"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Traži u bazi podataka"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s nije pronađena!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Neispravna baza podataka"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Neispravan naziv tablice"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tablica %s preimenovana je u %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2988,16 +2987,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Valjana putanja slika za temu %s nije pronađena!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Nema raspoloživog pregleda."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "Dodijeli"
@@ -3049,7 +3048,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3090,12 +3089,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Izradi relaciju"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3106,7 +3105,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3124,7 +3123,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3137,7 +3136,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3236,77 +3235,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Izradi novi indeks"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Redovi završeni s"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Najveći broj datoteka zapisnika"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3380,20 +3379,20 @@ msgstr "Odabir poslužitelja"
msgid "Cookies must be enabled past this point."
msgstr "Od ovog mjesta potrebno je omogućiti kolačiće."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Nije bilo nikakvih aktivnosti tijekom %s sekunda. Prijavite se ponovo."
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Prijavljivanje na MySQL poslužitelj nije moguće"
@@ -3437,18 +3436,18 @@ msgstr "Tablice"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Podaci"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Prepunjenje"
@@ -3566,8 +3565,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL upit"
@@ -3577,85 +3576,85 @@ msgstr "SQL upit"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL je poručio: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Preskoči Objasni SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Izradi PHP kod"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Osvježi"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Preskoči provjeru valjanosti SQL-a"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Provjera valjanosti SQL-a"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Pogoni"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Izrada profila"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y u %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekunda"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutine"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3663,7 +3662,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Na vrh stranice"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3672,7 +3671,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodni"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3681,7 +3680,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Sljedeće"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3689,45 +3688,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Završetak"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Skoči do baze podataka \"%s\"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Pretraži računalo"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "mapa učitavanja web poslužitelja"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Izvrši"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Ispiši"
@@ -3820,71 +3819,71 @@ msgstr "oboje navedeno"
msgid "neither of the above"
msgstr "ništa od navedenog"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Nije pozitivan broj"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Netočan broj porta"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Netočna vrijednost"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Varijabla"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL Validator je isključen"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
msgid "SOAP extension not found"
msgstr "PHP ekstenzija"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maksimum %s"
@@ -3903,7 +3902,7 @@ msgid "Set value: %s"
msgstr "Postavi vrijednost %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Vrati zadanu vrijednost"
@@ -4198,7 +4197,7 @@ msgid "Character set of the file"
msgstr "Tablica znakova za datoteku:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Oblikovanje"
@@ -4312,7 +4311,7 @@ msgstr "Ključ oznake"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME vrsta"
@@ -4442,8 +4441,8 @@ msgstr "Opcije izvoza baze podataka"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4895,111 +4894,117 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Broj otvorenih tablica."
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "The number of tables that are open."
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Broj otvorenih tablica."
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
#, fuzzy
msgid "Database tree separator"
msgstr "Predložak naziva datoteka"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Prikaži baze podataka u stablu"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
#, fuzzy
msgid "Use light version"
msgstr "MySQL verzija klijenta"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
msgid "Recently used tables"
msgstr "Provjeri tablicu"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Izbriši svve kolačiće na odlasku"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -5007,457 +5012,457 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
#, fuzzy
msgid "Maximum databases"
msgstr "Nema baza podataka"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Ograničenja resursa"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Izmijeni rasporede tablice po"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Stalne veze"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Preimenuj tablicu u"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Popravi grane"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
#, fuzzy
msgid "Save directory"
msgstr "Osnovna mapa podataka"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Tip autentifikacije"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Zabilježi tablicu"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Komprimiraj vezu"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Veze"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Kontroliraj korisničke lozinke"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bilo koje računalo"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Nema tablica"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Defragmentiraj tablicu"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
#, fuzzy
msgid "PHP extension to use"
msgstr "PHP ekstenzija"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Nema baza podataka"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "naziv poslužitelja"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Spoji se bez lozinke"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5466,376 +5471,376 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "naziv baze podataka"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "ID poslužitelja"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiziraj tablicu"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Popravi tablicu"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Odabir poslužitelja"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Koristi SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Prikazivanje stupca komentara"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmentiraj tablicu"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Izjave"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Rad s automatskim povratom"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Prikaži PHP podatke"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Prikaži stanje potčinjenog"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Opcije izvoza baze podataka"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Prikaži otvorene tablice"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Prikaži mrežu"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Prikaži phpinfo() link"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Prikaži detaljne informacije o MySQL serveru"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Prikaži pune upite"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Statistike redova"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5843,29 +5848,29 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
#, fuzzy
msgid "Skip locked tables"
msgstr "Prikaži otvorene tablice"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5875,80 +5880,80 @@ msgstr ""
msgid "Password"
msgstr "Lozinka"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Omogući SQL Validator"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Korisničko ime:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dodaj/Izbriši stupce polja"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
msgid "Default title"
msgstr "Preimenuj bazu podataka u"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5956,60 +5961,60 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
#, fuzzy
msgid "Upload directory"
msgstr "Osnovna mapa podataka"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -6030,84 +6035,84 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV upotrebom LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Otvori izračunsku tablicu dokumenta"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Brzo"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Prilagođena boja"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opcije izvoza baze podataka"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Otvori tekst dokumenta"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Neuspješno spajanje na MySQL server"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Netočna IP adresa: %s"
@@ -6127,7 +6132,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6136,17 +6141,17 @@ msgid ""
msgstr ""
"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Poslužitelj ne odgovara"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detalji..."
@@ -6214,7 +6219,7 @@ msgstr "Izradi tablicu"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Naziv"
@@ -6410,25 +6415,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "MySQL verzija klijenta"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Izradi relaciju"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Izradi relaciju"
@@ -7203,18 +7208,17 @@ msgid "Display MIME types"
msgstr "Raspoložive MIME vrste"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Računalo"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Vrijeme generiranja"
@@ -7427,15 +7431,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL rezultat"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generirano s"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)."
@@ -7532,7 +7528,7 @@ msgstr "Neispravan broj polja u CSV unosu unutar retka %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Naziv tablice"
@@ -7896,7 +7892,7 @@ msgstr "Izrada PDF datoteka"
msgid "Displaying Column Comments"
msgstr "Prikazivanje stupca komentara"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Pretvaranje preglednika"
@@ -7997,10 +7993,10 @@ msgid "Variable"
msgstr "Varijabla"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Vrijednost"
@@ -8059,7 +8055,7 @@ msgstr "Generiraj lozinku"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -8100,8 +8096,8 @@ msgid "Edit event"
msgstr "Web poslužitelj"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8165,7 +8161,7 @@ msgstr "Dovrši umetanja"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8221,7 +8217,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8308,35 +8304,35 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8344,25 +8340,25 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Dopušta pokretanje pohranjenih rutina."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Rutine"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcija"
@@ -8571,7 +8567,7 @@ msgstr "Sadržaj tablice"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributi"
@@ -8680,12 +8676,12 @@ msgid "Toggle scratchboard"
msgstr "Uključi bilješke"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nepoznati jezik: %1$s."
@@ -8736,7 +8732,7 @@ msgstr "Pokreni SQL upit na poslužitelju %s"
msgid "Run SQL query/queries on database %s"
msgstr "Pokreni SQL upit na bazi podataka %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8748,11 +8744,11 @@ msgstr "Kalendar"
msgid "Columns"
msgstr "Nazivi stupaca"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Favoriziraj ovaj SQL upit"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Neka svi korisnici imaju pristup ovom favoritu"
@@ -8851,12 +8847,12 @@ msgstr ""
"SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali "
"potrebna PHP proširenja, na način opisan u %sdokumentaciji%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8874,7 +8870,7 @@ msgstr ""
"\") or a single quote (\"'\") amongst those values, precede it with a "
"backslash (for example '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8882,19 +8878,19 @@ msgstr ""
"Za zadane vrijednosti unesite samo jednu vrijednost, bez kosih crta ili "
"navodnika, u sljedećem obliku: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Ukloni stupac / stupce"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8903,11 +8899,11 @@ msgstr ""
"Za popis raspoloživih opcija preoblikovanja i njihovih MIME vrsta "
"oblikovanja, pritisnite %sopcije preoblikovanja%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opcije preoblikovanja"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8919,79 +8915,79 @@ msgstr ""
"jednostruki navodnik (\"'\") unutar ovih vrijednosti, ispred znaka stavite "
"lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "bez kompresije"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Kako je definirano:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primarni"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Puni tekst"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Poslije %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Dodaj %s polja"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Morate dodati najmanje jedno polje."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Pogon pohrane"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definicija PARTICIJE"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Traži"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9203,13 +9199,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9219,8 +9215,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Datoteke nisu pronađene unutar ZIP arhive!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Pogreška u ZIP arhivi:"
@@ -9405,20 +9401,26 @@ msgstr ""
msgid "No databases"
msgstr "Nema baza podataka"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "naziv tablice"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "naziv tablice"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Izradi tablicu"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Odaberite bazu podataka"
@@ -10037,7 +10039,7 @@ msgstr "Privilegije specifične za tablicu"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku "
+msgstr "Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku"
#: server_privileges.php:711
msgid "Administration"
@@ -10614,7 +10616,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Izjave"
@@ -11149,7 +11151,7 @@ msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu."
#: server_status.php:1392
msgid "The number of physical writes of a key block to disk."
-msgstr "Broj fizičkih zapisivanja ključnih blokova na disk. "
+msgstr "Broj fizičkih zapisivanja ključnih blokova na disk."
#: server_status.php:1393
msgid ""
@@ -11864,37 +11866,37 @@ msgstr "Ignoriraj greške"
msgid "Show form"
msgstr "Prikaži boju"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11903,39 +11905,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11943,21 +11945,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11966,7 +11968,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11976,37 +11978,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -12016,8 +12018,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Nema baza podataka"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Pretraži strane vrijednosti"
@@ -12051,21 +12053,29 @@ msgstr "Prikazivanje SQL upita"
msgid "Validated SQL"
msgstr "Provjera valjanosti SQL-a"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL rezultat"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generirano s"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi s indeksima tablice `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Oznaka"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tablica %1$s uspješno je izmijenjena."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12207,7 +12217,7 @@ msgstr "Vrijednost"
msgid "Table %s already exists!"
msgstr "Tablica %s već postoji!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tablica %1$s je izrađena."
@@ -12422,45 +12432,45 @@ msgstr "Ukloni particioniranje"
msgid "Check referential integrity:"
msgstr "Provjeri referencijalan integritet:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Prikaži tablice"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Iskorištenost prostora"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Upotreba"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Na snazi"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistike redova"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamički"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Duljina retka"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Veličina retka "
+msgstr "Veličina retka"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12773,30 +12783,30 @@ msgstr ""
msgid "Create version"
msgstr "Izradi relaciju"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL upit"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
msgid "How to use"
msgstr "PHP ekstenzija"
diff --git a/po/hu.po b/po/hu.po
index acbf68370a..43ccb3efc4 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-04-20 00:10+0200\n"
"Last-Translator: Gergely Nagy \n"
"Language-Team: hungarian \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Összes megjelenítése"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Oldalszám:"
@@ -39,30 +39,30 @@ msgstr ""
"közti frissítést."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Keresés"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Keresés"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Indítás"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Megjegyzés az adatbázishoz: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tábla megjegyzése"
@@ -124,14 +124,14 @@ msgstr "Tábla megjegyzése"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Oszlop"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Oszlop"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Típus"
@@ -156,9 +156,9 @@ msgstr "Típus"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulla"
@@ -168,7 +168,7 @@ msgstr "Nulla"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Alapértelmezett"
@@ -177,18 +177,18 @@ msgstr "Alapértelmezett"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Hivatkozás"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Megjegyzések"
@@ -199,11 +199,11 @@ msgstr "Megjegyzések"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Nem"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Igen"
msgid "View dump (schema) of database"
msgstr "Adatbázis kiírás (vázlat) megtekintése"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Nem található tábla az adatbázisban."
@@ -324,8 +324,8 @@ msgstr "A másolt adatbázisra váltás"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Kapcsolati séma szerkesztése, exportálása"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "Kapcsolati séma szerkesztése, exportálása"
msgid "Table"
msgstr "Tábla"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Sorok"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Méret"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "használatban"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Létrehozás"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Utolsó frissítés"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Utolsó ellenőrzés"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "Felhasználandó táblák"
msgid "SQL query on database %s :"
msgstr "SQL-lekérdezés a(z) %s adatbázison:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Lekérdezés indítása"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "A hozzáférés megtagadva"
@@ -525,8 +524,8 @@ msgstr[0] "%s találat a(z) %s táblában"
msgstr[1] "%s találat a(z) %s táblában"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Tartalom"
@@ -602,11 +601,11 @@ msgstr "A(z) %s nézet eldobása kész"
msgid "Table %s has been dropped"
msgstr "A(z) %s tábla eldobása megtörtént"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Nyomkövetés aktív."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Nyomkövetés inaktív."
@@ -620,7 +619,7 @@ msgstr ""
"%sdokumentációban%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Nézet"
@@ -665,7 +664,7 @@ msgstr "A felülírott táblák kijelölése"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -674,17 +673,18 @@ msgid "Export"
msgstr "Exportálás"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Nyomtatási nézet"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Kiürítés"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -727,15 +727,14 @@ msgid "Tracked tables"
msgstr "Nyomon követett táblák"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Adatbázis"
@@ -753,7 +752,7 @@ msgstr "frissítve"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Állapot"
@@ -946,13 +945,13 @@ msgstr "Könyvjelző megjelenítése"
msgid "The bookmark has been deleted."
msgstr "A könyvjelző törlése megtörtént."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Nem lehetett beolvasni a fájlt"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -984,7 +983,7 @@ msgstr ""
"Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a "
"telepítését!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "A(z) %s könyvjelző elkészült"
@@ -1012,8 +1011,8 @@ msgstr ""
"jelenti, hogy a phpMyAdmin nem tudja befejezni ezt az importálást, ha Ön nem "
"növeli meg a PHP időkorlátozását."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1127,9 +1126,9 @@ msgid "Close"
msgstr "Bezárás"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Módosítás"
@@ -1157,7 +1156,7 @@ msgstr "Statikus adat"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Összesen"
@@ -1168,12 +1167,12 @@ msgid "Other"
msgstr "Egyéb"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1254,13 +1253,13 @@ msgid "System swap"
msgstr "Rendszer lapozófájl"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1318,27 +1317,27 @@ msgid "Connections"
msgstr "Kapcsolatok"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1378,9 +1377,9 @@ msgstr "Legalább egy változót adjon meg a sorozathoz"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Nincs"
@@ -1560,7 +1559,7 @@ msgstr "A kimenet magyarázata"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Idő"
@@ -1883,7 +1882,7 @@ msgstr "A(z) %d érvénytelen sorszám."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1897,7 +1896,7 @@ msgstr "Keresési kritériumok elrejtése"
msgid "Show search criteria"
msgstr "Keresési kritériumok mutatása"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2073,7 +2072,7 @@ msgstr "Jelszó megváltoztatása"
msgid "More"
msgstr "Több"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2160,63 +2159,63 @@ msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "jan."
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "febr."
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "márc."
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "ápr."
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "máj."
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "jún."
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "júl."
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "aug."
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "szept."
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "okt."
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "nov."
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "dec."
@@ -2254,32 +2253,32 @@ msgid "Sun"
msgstr "Vas"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Hét"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Ked"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Csü"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pén"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Szo"
@@ -2421,11 +2420,11 @@ msgstr "A létező beállító fájl (%s) nem olvasható."
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Betűméret"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2433,13 +2432,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"A feltöltött fájl mérete túllépi a php.ini fájlban megadott "
"upload_max_filesize utasítást."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2447,27 +2446,27 @@ msgstr ""
"A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE "
"utasítást."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "A feltöltött fájl csak részben került feltöltésre."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Hiányzik egy ideiglenes mappa."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Nem sikerült lemezre írni a fájlt."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "A fájlfeltöltés kiterjesztés alapján leállt."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Ismeretlen hiba a fájlfeltöltésben."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2475,11 +2474,11 @@ msgstr ""
"Hiba történt a feltöltött fájl áthelyezésekor, lásd [a@./Documentation."
"html#faq1_11@Documentation]GyIK 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2493,7 +2492,7 @@ msgstr "Nincs meghatározott index!"
msgid "Indexes"
msgstr "Indexek"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2531,46 +2530,46 @@ msgstr ""
"A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg "
"eltávolítható."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Adatbázisok"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Kiszolgáló"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Szerkezet"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Beszúrás"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Műveletek"
@@ -2649,27 +2648,27 @@ msgstr "Bővítmények"
msgid "Engines"
msgstr "Motorok"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Hiba"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d sor érintett."
msgstr[1] "%1$d sor érintett."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "A(z) %1$d sor törlése megtörtént."
msgstr[1] "A(z) %1$d sor törlése megtörtént."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2717,53 +2716,53 @@ msgstr "%s letiltott ezen a MySQL szerveren."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "ismeretlen táblaállapot: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Forrás adatbázis"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Nem található a(z) %s téma!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Érvénytelen adatbázis"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Érvénytelen táblanév"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "A(z) %s tábla átnevezése %s névre megtörtént"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2771,16 +2770,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nincs érvényes kép elérési útja a(z) %s témának!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Nincs előnézet."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "csináld"
@@ -2832,7 +2831,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2873,13 +2872,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Verzió létrehozása"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2890,7 +2889,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2908,7 +2907,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2921,7 +2920,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3020,77 +3019,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Index létrehozása"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Sorok vége"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Naplófájlok száma"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3165,21 +3164,21 @@ msgstr "Szerver választása"
msgid "Cookies must be enabled past this point."
msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"A konfiguráció tiltja a jelszó nélküli bejelentkezést (lásd AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Nem volt tevékenység %s másodperce; jelentkezzen be újra"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Nem lehet bejelentkezni a MySQL szerverre"
@@ -3225,18 +3224,18 @@ msgstr "Táblák"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Adatok"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Felülírás"
@@ -3345,8 +3344,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-lekérdezés"
@@ -3356,81 +3355,81 @@ msgstr "SQL-lekérdezés"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "A MySQL mondta: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Nem lehetett kapcsolódni a MySQL-validátorhoz"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Az SQL magyarázata"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL magyarázat átugrása"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP kód nélkül"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP-kód létrehozása"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Frissítés"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL érvényesítés átugrása"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL érvényesítése"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "lekérdezés inline szerkesztése"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Belső"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Adatgyűjtés"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Vas"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y. %B %d. %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s nap, %s óra, %s perc, %s másodperc"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Hiányzó paraméter:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3438,21 +3437,21 @@ msgctxt "First page"
msgid "Begin"
msgstr "A tetejére"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Előző"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Következő"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3460,46 +3459,46 @@ msgctxt "Last page"
msgid "End"
msgstr "Vége"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Ugrás a(z) "%s" adatbázishoz."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Kattintson a kijelöléshez."
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Számítógép tallózása:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Válasszon a szerver feltöltési könyvtárából %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Nem elérhető a feltöltésekhez megadott könyvtár"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Nincsenek feltöltendő fájlok"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Végrehajtás"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Nyomtatás"
@@ -3583,68 +3582,68 @@ msgstr "a fentiekből mindkettő"
msgid "neither of the above"
msgstr "a fentiekből egyik sem"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Nem egy pozitív szám"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Nem egy nem negatív szám"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "A portszám nem érvényes"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Az érték pontatlan"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Az értéknek egyenlőnek, vagy kevesebbnek kell lennie, mint %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "%s adatai hiányoznak"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "nem elérhető"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" követelménye a(z) %s bővítmény"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "importálás nem fog működni, hiányzó funkció: (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "exportálás nem fog működni, hiányzó funkció: (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL validátor kikapcsolva"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP bővítmény nem található"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maximum %s"
@@ -3664,7 +3663,7 @@ msgid "Set value: %s"
msgstr "Adja meg az értéket: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Alapértelmezett érték visszaállítása"
@@ -3970,7 +3969,7 @@ msgid "Character set of the file"
msgstr "A fájl karakterkészlete"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formátum"
@@ -4069,7 +4068,7 @@ msgstr "Feliratkulcs"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-típus"
@@ -4193,8 +4192,8 @@ msgstr "Alapértelmezett beállítások testreszabása"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4634,14 +4633,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "A filter-doboz megjelenítéséhez szükséges minimális táblák száma"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "A filter-doboz megjelenítéséhez szükséges minimális táblák száma"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Az adatbázisokat különféle fa szintekre elválasztó karakterlánc"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Az adatbázisfa elválasztója"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4649,39 +4654,39 @@ msgstr ""
"Csak az egyszerűsített változatban; az adatbázisok megjelenítése faként (az "
"alább megadott elválasztó által megállapítva)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Az adatbázisok megjelenítése fa szerkezetként"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Tiltsa ezt le, ha egyszerre kívánja megtekinteni az összes adatbázist"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Egyszerűsített változat használata"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "A táblafa mélysége legfeljebb"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "A táblákat különféle fa szintekre tagoló karakterlánc"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Táblafa elválasztó"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL, ahová a navigációs keretben lévő logo fog mutatni"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "A logó hivatkozásának URL-címe"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4689,38 +4694,38 @@ msgstr ""
"A hivatkozott oldal megnyitása a(z) ([kbd]main[/kbd]) főablakban vagy újban "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "A logó hivatkozásának célja"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "A szerver kiemelése az egérmutató alatt"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "A szövegkiemelés engedélyezése"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Az utoljára használt táblák maximális száma; állítsa 0-ra a tiltáshoz"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Utoljára használt táblák"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"A mutatott karakterek maximális száma nem numerikus mező esetén a tallózás "
"nézetben"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Mező-karakterek korlátozása"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4731,11 +4736,11 @@ msgstr ""
"szerver használata esetén könnyen megfeledkezhet a másik szerverről "
"kijelentkezésről."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Kijelentkezéskor az összes cookie törlése"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4743,11 +4748,11 @@ msgstr ""
"Meghatározza, hogy az előző bejelentkezést kell-e újrahívni a cookie-s "
"hitelesítési módban"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "A felhasználónév újrahívása"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4759,51 +4764,51 @@ msgstr ""
"munkamenetekhez kerül megtartásra, vagyis a böngésző ablakának bezárásakor "
"azonnal törlésre kerül. Ez nem megbízható környezetek esetén ajánlott."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "A bejelentkezési cookie tárolása"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
"Meghatározza, hogy meddig érvényes (másodpercben) egy bejelentkezési cookie"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "A bejelentkezési cookie érvényessége"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "A LONGTEXT mezők méretének duplára növelése"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Nagyobb LONGTEXT szövegbeviteli mezők"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
"Egy SQL-lekérdezés megjelenítésekor használt karakterek száma legfeljebb"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "A SQL kijelzett hossza legfeljebb"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "A felhasználók nem adhatnak meg nagyobb értéket"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"A bal oldali keretben és az adatbázislistában látható adatbázisok száma"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Az adatbázisok száma"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4813,19 +4818,19 @@ msgstr ""
"eredményhalmaz több sort tartalmaz, akkor az "Előző" és a ""
"Következő" hivatkozás lesz látható."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "A megjelenítendő sorok száma"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "A táblalistában megjelenítendő táblák száma"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "A táblák száma"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4833,11 +4838,11 @@ msgstr ""
"Alapértelmezett figyelmeztetés kikapcsolása, ha az mcrypt hiányzik a cookie "
"hitelesítéshez"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt figyelmeztetés"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4845,45 +4850,45 @@ msgstr ""
"Egy parancsfájl számára a lefoglaláshoz engedélyezett bájtok száma, pl. [kbd]"
"32M[/kbd] (korlátlan: [kbd]0[/kbd])"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "A memória korlátozása"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Ezek a Szerkesztés, Másolás és Törlés linkek"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
"Használjon természetes rendezést a tábla, és adatbázis nevek sorrendjéhez"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Természetes rendezés"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Csak ikonok, csak szöveg, vagy mindkettő használata"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Navigációs sáv ikonokkal"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"A GZip-kimenet pufferelése a HTTP-átvitelekben megnövekedett sebességhez"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip-kimenet pufferelése"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4891,19 +4896,19 @@ msgstr ""
"[kbd]SMART[/kbd] - pl. a TIME, DATE, DATETIME és TIMESTAMP típusú mezők "
"sorrendje csökkenő, egyéb esetben növekvő"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Alapértelmezett rendezési mód"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Állandó kapcsolatok használata a MySQL adatbázisokhoz"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Állandó kapcsolatok"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4913,23 +4918,23 @@ msgstr ""
"Struktúra oldalon jelenik meg, ha a phpMyAdmin konfiguráció tároló táblák "
"valamelyike nem található"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Hiányzó phpMyAdmin konfiguráció tároló táblák"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Ikonos táblaműveletek"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "A BLOB vagy a BLOB és BINARY mezők módosításának tiltása"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "A bináris mezők védelme"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
#, fuzzy
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
@@ -4940,113 +4945,113 @@ msgstr ""
"szükséges hozzá). Ha letiltja, akkor JS-eljárásokat használ fel a "
"lekérdezési előzmények megjelenítéséhez (ablak bezárásakor elvész)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Állandó lekérdezési előzmények"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Hány lekérdezés tartandó meg az előzményekben"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "A lekérdezési előzmények hossza"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Új lekérdezési ablak megnyitásakor fül megjelenítése"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Alapértelmezett lekérdezési ablak fül"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Lekérdezési ablak magassága (pixelekben)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Lekérdezés ablak magassága"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Lekérdezés ablak szélessége (pixelekben)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Lekérdezés ablak szélessége"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Válassza ki a karakterkészlet-konvertáláshoz használandó funkciókat"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Átkódoló motor"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Emlékezzen a tábla rendezésére"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Megismétli a fejléceket minden X cellánként, a [kbd]0[/kbd] kikapcsolja ezt "
"a lehetőséget"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Fejlécek kijavítása"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "A könyvtár, melybe az exportálások menthetők a szerveren"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Mentési könyvtár"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Hagyja üresen, ha nem használja"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Az állomás hitelesítési sorrendje"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Hagyja üresen az alapértelmezésekhez"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Az állomás hitelesítési szabályai"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "A jelszó nélküli bejelentkezés engedélyezése"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "A root bejelentkezés engedélyezése"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP Basic Auth Realm neve, ami HTTP hitelesítés közben jelenik meg"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5056,19 +5061,19 @@ msgstr ""
"fájljának elérési útja (nem a dokumentumgyökérben található; javaslat: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey konfigurációs fájl"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Használandó hitelesítési módszer"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Hitelesítés típusa"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5076,11 +5081,11 @@ msgstr ""
"Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/bookmark]könyvjelző"
"[/a] támogatás, alapértelmezés: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Könyvjelzők táblája"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5088,32 +5093,32 @@ msgstr ""
"Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, alapértelmezés: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Oszlopinformációs tábla"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "A MySQL-szerverhez csatlakozás tömörítése"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "A kapcsolat tömörítése"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"A szerverhez csatlakozás módja, hagyja meg a tcp értéket, ha nem biztos benne"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Csatlakozás típusa"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "A kontrollfelhasználó jelszava"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5121,31 +5126,31 @@ msgstr ""
"Korlátozott jogokkal rendelkező, speciális MySQL felhasználó, bővebben a "
"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a] címen olvashat róla"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Kontrollfelhasználó"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Kontrollfelhasználó"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "A táblák megszámolása az adatbázislista megjelenítésekor"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Táblák megszámolása"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5153,11 +5158,11 @@ msgstr ""
"Hagyja üresen, ha nem akar Tervező támogatást, alapértelmezés: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tervező tábla"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5166,29 +5171,29 @@ msgstr ""
"[/a] és a [a@http://bugs.mysql.com/19588]MySQL hibabejelentőben[/a] olvashat "
"róla"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Az INFORMATION_SCHEMA használatának letiltása"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Melyik PHP-kiterjesztés használandó, használja a mysqli kiterjesztést, ha "
"támogatott"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Használandó PHP-kiterjesztés"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "A (PCRE) reguláris kifejezéssel megegyező adatbázisok elrejtése"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Adatbázisok elrejtése"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5196,43 +5201,43 @@ msgstr ""
"Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek "
"támogatására, alapértelmezés: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL-lekérdezések előzményeinek táblája"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Az állomás neve, ahol a MySQL-szerver fut"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "A szerver állomásneve"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Kijelentkezési URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "A táblalistában megjelenítendő táblák száma"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "A csatlakozás jelszó nélküli megkísérlése"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Jelszó nélküli csatlakozás"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5246,30 +5251,30 @@ msgstr ""
"adatbázislistákat, beírva a nevüket sorrendben és használja a [kbd]*[/kbd]-t "
"a végén, hogy a többi abc-sorrendben jelenjen meg."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Csak a kilistázott adatbázisok megjelenítése"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Hagyja üresen, ha nem a konfigurációs hitelesítést használja"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "A konfigurációs hitelesítés jelszava"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF-séma: pages table"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5280,20 +5285,20 @@ msgstr ""
"oldalon. Hagyja üresen, ha nincs szükség a támogatására. Alapértelmezés: "
"[kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Adatbázis neve"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"A port, melyen a MySQL-szerver figyel, hagyja üresen, ha az alapértelmezett"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "A szerver portja"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "blank for no user preferences storage in database, suggested: d]_config[/"
@@ -5305,11 +5310,11 @@ msgstr ""
"Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az "
"adatbázisban, javaslat: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Utoljára használt tábla"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5317,19 +5322,19 @@ msgstr ""
"Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/relation]relációs "
"hivatkozás[/a] támogatás, alapértelmezés: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relációs tábla"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "A meglévő adatbázisokat kiolvasó SQL-parancs"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES parancs"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5337,44 +5342,44 @@ msgstr ""
"Lásd a [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]hitelesítési "
"típusok[/a] példáját"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Az egyszeri bejelentkezési munkamenet neve"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Az egyszeri bejelentkezés URL-címe"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"A szoftvercsatorna, melyen a MySQL-szerver figyel, hagyja üresen, ha az "
"alapértelmezett"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "A szerver szoftvercsatornája"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "SSL engedélyezése a MySQL-szerverhez való csatlakozáshoz"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL használata"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF-séma: table coordinates"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5382,11 +5387,11 @@ msgstr ""
"Tábla a megjelenített oszlopok leírásához, hagyja üresen, ha nem kíván "
"megadni leírást; javasolt: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Oszlopok tábla megjelenítése"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "blank for no user preferences storage in database, suggested: d]_config[/"
@@ -5398,13 +5403,13 @@ msgstr ""
"Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az "
"adatbázisban, javaslat: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Tábla töredezettségmentesítése"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5412,11 +5417,11 @@ msgstr ""
"DROP DATABASE IF EXISTS utasítás hozzá lesz adva a napló első sora ként az "
"adatbázis létrehozása során."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE hozzáadása"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5424,11 +5429,11 @@ msgstr ""
"DROP TABLE IF EXISTS utasítás hozzá lesz adva a napló első sora ként a tábla "
"létrehozása során."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "DROP TABLE hozzáadása"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5436,20 +5441,20 @@ msgstr ""
"DROP VIEW IF EXISTS utasítás hozzá lesz adva a napló első sora ként a nézet "
"létrehozása során."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "DROP VIEW hozzáadása"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Állítások listájának definiálása az új verziójú automata-létrehozások során."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Utasítások követésre"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5457,21 +5462,21 @@ msgstr ""
"Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek "
"támogatására, javasolt: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL-lekérdezések előzményeinek táblája"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Verziók automatikus létrehozása"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "blank for no user preferences storage in database, suggested: d]_config[/"
@@ -5483,15 +5488,15 @@ msgstr ""
"Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az "
"adatbázisban, javaslat: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "A konfigurációs hitelesítés felhasználóneve"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5499,11 +5504,11 @@ msgstr ""
"A szerver felhasználóbarát leírása. Hagyja üresen az állomásnév "
"megjelenítéséhez."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "A szerver részletes neve"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid "r a user should be displayed a "show all (records)" button"
msgid "Whether a user should be displayed a "show all (rows)" button"
@@ -5511,11 +5516,11 @@ msgstr ""
"Meg kell-e jeleníteni egy felhasználó számára az "az összes (rekord) "
"megjelenítése" gombot"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Az összes sor megjelenítésének engedélyezése"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5525,82 +5530,82 @@ msgstr ""
"hitelesítési módra, mert a jelszót a konfigurációs fájl tartalmazza, ami "
"közvetlenül nem korlátozza ugyanazon parancs végrehajtásának a lehetőségét."
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "A jelszómódosító űrlap megjelenítése"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Az adatbázis létrehozása űrlap megjelenítése"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Több tevékenység mutatása"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Kisegítő állapot megjelenítése"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "Alapértelmezett megjelenítési irány"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Mező típusok mutatása"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Szerkesztés/beszúrás módban a függvénymezők megjelenítése"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "A függvénymezők megjelenítése"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Segítség megjelenítése"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5608,46 +5613,46 @@ msgstr ""
"Megjeleníti a [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"kimenetre mutató hivatkozást"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "A phpinfo() hivatkozás megjelenítése"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "A MySQL-szerver részletes adatainak megjelenítése"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Meghatározza, hogy meg kell-e jeleníteni a phpMyAdmin által generált SQL-"
"lekérdezéseket"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Az SQL-lekérdezések megjelenítése"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "SQL-lekérdezési panelek elrejtése"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Az adatbázis- és táblastatisztika megjelenítésének engedélyezése (pl. "
"területhasználat)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "A statisztika megjelenítése"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5655,11 +5660,11 @@ msgstr ""
"Ha engedélyezettek az eszközleírások, s ha megadták az adatbázis "
"megjegyzését, akkor ez tükrözi a megjegyzést és a valódi nevet"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Az adatbázis megjegyzésének megjelenítése a neve helyett"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5671,30 +5676,30 @@ msgstr ""
"['LeftFrameTableSeparator'] utasítás alapján, ezért csak a mappát hívják "
"úgy, mint az aliast, a táblanév változatlan marad."
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "A tábla megjegyzésének megjelenítése a neve helyett"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "A tábla megjegyzéseinek megjelenítése az eszközleírásokban"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"A használt táblák megjelölése, s a zárolt táblákat tartalmazó adatbázisok "
"láthatóvá tétele"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "A zárolt táblák kihagyása"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Szükséges az SQL Validator engedélyezése"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5704,17 +5709,17 @@ msgstr "Szükséges az SQL Validator engedélyezése"
msgid "Password"
msgstr "Jelszó"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "SQL Validator engedélyezése"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5722,60 +5727,60 @@ msgstr ""
"Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: [kbd]"
"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Felhasználónév"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Figyelmeztetés megjelenítése a főoldalon, Suhosin észlelésekor"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin figyelmeztetés"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Szövegterület oszlopai"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Szövegterület sorai"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "A böngésző ablak címe, ha ki van választva egy adatbázis"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "A böngésző ablak címe, ha semmi sincs kiválasztva"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Alapértelmezett cím"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "A böngésző ablak címe, ha ki van választva egy szerver"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "A böngésző ablak címe, ha ki van választva egy tábla"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5787,53 +5792,53 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) fejlécben:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "A megbízható proxyk listája az IP engedélyezéshez/elutasításhoz"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "A szerveren lévő könyvtár, melybe feltöltheti az importálandó fájlokat"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Feltöltések könyvtára"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "A teljes adatbázisban történő keresés engedélyezése"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Adatbázis-kereső használata"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Új verzió ellenőrzése"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Verzió-ellenőrzés"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5841,7 +5846,7 @@ msgstr ""
"A [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] tömörítés "
"engedélyezése az importálási és az exportálási műveletekhez"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5862,89 +5867,89 @@ msgid "Signon authentication"
msgstr "Signon hitelesítés"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV a LOAD DATA használatával"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document munkafüzet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Gyors"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Egyedi"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Adatbázis exportálási beállításai"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel CSV adat"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document szöveges dokumentum"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Nem lehetett kapcsolódni a Drizzle kiszolgálóhoz"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"A felhasználónév kiürítése a konfiguráció hitelesítési módszerének "
"használatakor"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"A bejelentkezési munkamenet nevének kiürítése az egyszeri bejelentkezési "
"hitelesítési módszer használatakor"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"A bejelentkezési URL kiürítése az egyszeri bejelentkezési módszer "
"használatakor"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "A phpMyAdmin vezérlő felhasználó kiürítése a pmadb használatakor"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"A phpMyAdmin vezérlő felhasználói jelszó kiürítése a pmadb használatakor"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "A következő IP-cím hibás: %s"
@@ -5964,7 +5969,7 @@ msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5972,15 +5977,15 @@ msgstr ""
"A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően "
"beállítotva)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "A kiszolgáló nem válaszol."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Részletek..."
@@ -6046,7 +6051,7 @@ msgstr "Tábla létrehozása"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Név"
@@ -6206,26 +6211,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Átkódoló motor"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version"
msgid "committed on %1$s by %2$s"
msgstr "Verzió létrehozása"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version"
msgid "authored on %1$s by %2$s"
@@ -6956,18 +6961,17 @@ msgid "Display MIME types"
msgstr "MIME-típusok megjelenítése"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Hoszt"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Létrehozás ideje"
@@ -7194,15 +7198,7 @@ msgstr "Nem található adat a grafikonhoz"
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-eredmény"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Készítette"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)."
@@ -7299,7 +7295,7 @@ msgstr "Érvénytelen oszlopszám a CSV bemenet %d. sorában."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Tábla neve"
@@ -7657,7 +7653,7 @@ msgstr "PDF készítése"
msgid "Displaying Column Comments"
msgstr "Oszlopmegjegyzések megjelenítése"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Böngésző átalakítása"
@@ -7766,10 +7762,10 @@ msgid "Variable"
msgstr "Változó"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Érték"
@@ -7830,7 +7826,7 @@ msgstr "Jelszó generálása"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7866,8 +7862,8 @@ msgid "Edit event"
msgstr "Esemény módosítása"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Hiba a kérés feldolgozásában"
@@ -7923,7 +7919,7 @@ msgstr "teljes beillesztések"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7979,7 +7975,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Érvénytelen eljárástípus: \"%s\""
@@ -8062,58 +8058,58 @@ msgstr "Biztonság"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Engedélyezi a tárolt eljárások végrehajtását."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Eljárás paraméterei"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Függvény"
@@ -8307,7 +8303,7 @@ msgstr "Tartalomjegyzék"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Tulajdonságok"
@@ -8408,12 +8404,12 @@ msgid "Toggle scratchboard"
msgstr "Scratchboard kapcsolása"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ismeretlen nyelv: %1$s."
@@ -8459,7 +8455,7 @@ msgstr "A(z) %s szerveren lefuttatandó SQL lekérdezés(ek)"
msgid "Run SQL query/queries on database %s"
msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Törlés"
@@ -8468,11 +8464,11 @@ msgstr "Törlés"
msgid "Columns"
msgstr "Oszlopok"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára "
@@ -8576,13 +8572,13 @@ msgstr ""
"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
"kiterjesztést."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Nyomkövetés aktív."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8594,7 +8590,7 @@ msgstr ""
"(\"'\") akar ezekben az értékekben használni, akkor fordított perjellel "
"kezdje (például '\\\\xyz' vagy 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8602,19 +8598,19 @@ msgstr ""
"Írjon be egy értéket az alapértelmezett értékekhez, fordított perjel, escape "
"karakter vagy idézőjelek nélkül, a következő formátum használatával: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Index"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Oszlop(ok) eltávolítása"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8623,11 +8619,11 @@ msgstr ""
"Az elérhető átalakítási beállítások listájához és a hozzájuk tartozó MIME-"
"típusokhoz kattintson ide: %stransformation descriptions%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Átalakítás beállításai"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8639,74 +8635,74 @@ msgstr ""
"akar beszúrni az értékekbe, akkor kezdje fordított perjellel (például: '\\"
"\\xyz' vagy 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM vagy SET adat túl nagy?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Nincs"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Mint meghatározva:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Elsődleges"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Teljes szöveg"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s után"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "%s oszlop hozzáadása"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Legalább egy oszlopot kell hozzáadnia."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Tárolómotor"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "PARTITION definíció"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Kezelő"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Keresés"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Szerkesztés/Beszúrás"
@@ -8885,11 +8881,11 @@ msgstr ""
"A beállításai csak a jelenlegi munkamenethez lesznek elmentve. A végleges "
"tároláshoz szükséges a %sphpMyAdmin beállítás tároló%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Nem menthetők el a módosítások"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8899,8 +8895,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Nem található fájl a ZIP archívumban!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Hiba a ZIP archívumban:"
@@ -9088,18 +9084,24 @@ msgstr ""
msgid "No databases"
msgstr "Nincs adatbázis"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Tábla rendezésének módosítása e szerint:"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Tábla rendezésének módosítása e szerint:"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Tábla létrehozása"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Válasszon adatbázist"
@@ -10255,7 +10257,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "A kezdőlap testreszabása"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Utasítások"
@@ -11486,14 +11488,14 @@ msgstr "A hibák figyelmen kívül hagyása"
msgid "Show form"
msgstr "Űrlap megjelenítése"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Nem érhető el sem az URL wrapper, sem a CURL. A verzió-ellenőrzés nem "
"lehetséges."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11501,15 +11503,15 @@ msgstr ""
"A verzió beolvasása nem sikerült. Lehet, hogy ön kapcsolat nélküli módban "
"dolgozik, vagy a frissítő szerver nem válaszol."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Érvénytelen verzió karakterlánc érkezett a szerverről"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "A verzió karakterlánc nem elemezhető"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11518,11 +11520,11 @@ msgstr ""
"Ön Git verziót használ, futtassa a [kbd]git pull[/kbd] parancsot :-)[br]"
"Legújabb stabil verzió: %s, kiadás dátuma: %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Nem jelent meg újabb stabil verzió"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, fuzzy, php-format
#| msgid ""
#| "a@?page=form&formset=features#tab_Security]option[/a] should be abled "
@@ -11544,7 +11546,7 @@ msgstr ""
"címe olyan internetszolgáltatóhoz tartozik, ahol több ezer felhasználó, "
"köztük Ön is, csatlakozik az internethez."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11554,7 +11556,7 @@ msgstr ""
"hitelesítést, ezért a kulcs generálása az Ön számára megtörtént. Ez kerül "
"felhasználásra a cookiek titkosításához."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11563,7 +11565,7 @@ msgstr ""
"A %sBzip2 tömörítéshez és kicsomagoláshoz%s olyan függvényekre (%s) van "
"szükség, amelyek ezen a rendszeren nem elérhetőek."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11572,13 +11574,13 @@ msgstr ""
"a könyvtárhoz nem férhet hozzá mindenki, s a szerveren lévő többi "
"felhasználó által sem írható."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Ezt a %slehetőséget%s engedélyezni kellene, ha a webböngészője támogatja azt."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11587,7 +11589,7 @@ msgstr ""
"A %sGZip tömörítéshez és kicsomagoláshoz%s olyan függvényekre (%s) van "
"szükség, amelyek ezen a rendszeren nem elérhetőek."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11595,7 +11597,7 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Security]Login cookie validity[/a] uld be "
@@ -11610,14 +11612,14 @@ msgstr ""
"1800-nál nagyobb értékek kockára teszik a biztonságot, mint például a "
"megszemélyesítés."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, fuzzy, php-format
#| msgid ""
#| " feel this is necessary, use additional protection settings - ?"
@@ -11639,7 +11641,7 @@ msgstr ""
"internetszolgáltatóhoz tartozik, ahol több ezer felhasználó, köztük Ön is, "
"csatlakozik az internethez."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, fuzzy, php-format
#| msgid ""
#| "t the [kbd]config[/kbd] authentication type and included username sword "
@@ -11661,7 +11663,7 @@ msgstr ""
"panelhoz. Állítsa [kbd]cookie[/kbd] vagy [kbd]http[/kbd] módra a [a@?"
"page=servers&mode=edit&id=%1$d#tab_Server]hitelesítési típust[/a]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11670,7 +11672,7 @@ msgstr ""
"A %szip tömörítéshez%s olyan függvényekre (%s) van szükség, amelyek ezen a "
"rendszeren nem elérhetőek."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11679,25 +11681,25 @@ msgstr ""
"A %szip kicsomagoláshoz%s olyan függvényekre (%s) van szükség, amelyek ezen "
"a rendszeren nem elérhetőek."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it."
msgid "You should use SSL connections if your database server supports it."
msgstr "SSL-kapcsolatokat kellene használnia, ha a webszervere támogatja."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Teljesítmény okokból mysqli kiterjesztést kellene használnia."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Ön engedélyezi a jelszó nélküli csatlakozást a szerverhez."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Túl rövid a kulcs, legalább 8 karakterből álljon"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"A kulcsnak betűket, számokat [em]és[/em] speciális karaktereket kell "
@@ -11707,8 +11709,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Hibás adat"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Az idegen kulcsok böngészése"
@@ -11740,21 +11742,29 @@ msgstr "Megjelenítés SQL lekérdezésként"
msgid "Validated SQL"
msgstr "Érvényes SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-eredmény"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Készítette"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probléma a(z) `%s` tábla indexeivel"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Név"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "A(z) %1$s tábla módosítása sikerült"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11886,7 +11896,7 @@ msgstr "Y érték"
msgid "Table %s already exists!"
msgstr "Már létezik %s nevű tábla!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "A(z) %1$s tábla elkészült."
@@ -12095,43 +12105,43 @@ msgstr "Particionálás eltávolítása"
msgid "Check referential integrity:"
msgstr "Hivatkozási sértetlenség ellenőrzése:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Táblák megjelenítése"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Területhasználat"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Méret"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Hatásos"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Sorstatisztika"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statikus"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamikus"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Sor hossza"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Sor mérete"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12427,32 +12437,32 @@ msgstr ""
msgid "Create version"
msgstr "Verzió létrehozása"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "További keresési feltételek"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "A megjelenítendő sorok száma"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Hogyan kell használni"
diff --git a/po/hy.po b/po/hy.po
index bae8b5897e..9af0ac33e5 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-03-23 10:41+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: none\n"
@@ -24,11 +24,11 @@ msgid "Show all"
msgstr ""
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr ""
@@ -40,30 +40,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr ""
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr ""
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr ""
@@ -111,8 +111,8 @@ msgid "Database comment: "
msgstr ""
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr ""
@@ -123,14 +123,14 @@ msgstr ""
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr ""
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr ""
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr ""
@@ -155,9 +155,9 @@ msgstr ""
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr ""
@@ -167,7 +167,7 @@ msgstr ""
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr ""
@@ -176,18 +176,18 @@ msgstr ""
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr ""
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr ""
@@ -198,11 +198,11 @@ msgstr ""
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr ""
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr ""
@@ -321,8 +321,8 @@ msgstr ""
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -340,8 +340,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr ""
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -351,45 +351,44 @@ msgstr ""
msgid "Table"
msgstr ""
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr ""
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr ""
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr ""
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr ""
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr ""
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr ""
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -478,13 +477,13 @@ msgstr ""
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr ""
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr ""
@@ -518,8 +517,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -595,11 +594,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -611,7 +610,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -656,7 +655,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -665,17 +664,18 @@ msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -718,15 +718,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -744,7 +743,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -929,13 +928,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -958,7 +957,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -980,8 +979,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1090,9 +1089,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
@@ -1116,7 +1115,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
@@ -1127,12 +1126,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ""
@@ -1211,13 +1210,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr ""
@@ -1275,27 +1274,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr ""
@@ -1335,9 +1334,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr ""
@@ -1508,7 +1507,7 @@ msgstr ""
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1811,7 +1810,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1825,7 +1824,7 @@ msgstr ""
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr ""
@@ -1989,7 +1988,7 @@ msgstr ""
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2074,63 +2073,63 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr ""
@@ -2168,32 +2167,32 @@ msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr ""
@@ -2332,11 +2331,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2344,47 +2343,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2398,7 +2397,7 @@ msgstr ""
msgid "Indexes"
msgstr ""
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2434,46 +2433,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr ""
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2552,27 +2551,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2615,50 +2614,50 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr ""
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2666,16 +2665,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2727,7 +2726,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2768,12 +2767,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2784,7 +2783,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
@@ -2801,7 +2800,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2814,7 +2813,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2911,71 +2910,71 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr ""
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr ""
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3041,20 +3040,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3098,18 +3097,18 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3212,8 +3211,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr ""
@@ -3223,144 +3222,144 @@ msgstr ""
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr ""
@@ -3444,68 +3443,68 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3524,7 +3523,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3801,7 +3800,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr ""
@@ -3900,7 +3899,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4022,8 +4021,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
@@ -4430,108 +4429,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4539,434 +4542,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -4975,350 +4978,350 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5326,28 +5329,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5357,76 +5360,76 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5434,59 +5437,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5507,82 +5510,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5602,21 +5605,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5678,7 +5681,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -5830,25 +5833,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr ""
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr ""
@@ -6508,18 +6511,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6717,15 +6719,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6817,7 +6811,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7168,7 +7162,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7265,10 +7259,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7327,7 +7321,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7363,8 +7357,8 @@ msgid "Edit event"
msgstr ""
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7414,7 +7408,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7468,7 +7462,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7539,57 +7533,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -7764,7 +7758,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -7861,12 +7855,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -7912,7 +7906,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -7921,11 +7915,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8011,12 +8005,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8024,34 +8018,34 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr ""
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8059,71 +8053,71 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr ""
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr ""
@@ -8245,11 +8239,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8259,8 +8253,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8410,16 +8404,20 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+msgid "Filter databases by name"
+msgstr ""
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr ""
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -9517,7 +9515,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -10598,37 +10596,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10637,39 +10635,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -10677,21 +10675,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -10700,7 +10698,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -10710,37 +10708,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -10748,8 +10746,8 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -10779,21 +10777,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr ""
@@ -10909,7 +10915,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11108,43 +11114,43 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr ""
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11427,27 +11433,27 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/id.po b/po/id.po
index 8247b77fb6..9a8997a6ca 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-03-27 16:57+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: indonesian \n"
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Tampilkan semua"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Nomor halaman:"
@@ -40,30 +40,30 @@ msgstr ""
"pembaruan lintas-jendela"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Cari"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Cari"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kirim"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Komentar basis data: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentar tabel"
@@ -125,14 +125,14 @@ msgstr "Komentar tabel"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Kolom"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Kolom"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Jenis"
@@ -157,9 +157,9 @@ msgstr "Jenis"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Kosong"
@@ -169,7 +169,7 @@ msgstr "Kosong"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Bawaan"
@@ -178,18 +178,18 @@ msgstr "Bawaan"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Tautan ke"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentar"
@@ -200,11 +200,11 @@ msgstr "Komentar"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "Tidak"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Ya"
msgid "View dump (schema) of database"
msgstr "Tampilkan dump (skema) basis data"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Tidak ada tabel dalam basis data."
@@ -326,8 +326,8 @@ msgstr "Pindah ke basis data hasil penyalinan"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -347,8 +347,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Edit atau ekspor skema relasional"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -358,45 +358,44 @@ msgstr "Edit atau ekspor skema relasional"
msgid "Table"
msgstr "Tabel"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Baris"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Ukuran"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "sedang digunakan"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Pembuatan"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Pembaruan terakhir"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Pemeriksaan terakhir"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -484,13 +483,13 @@ msgstr "Gunakan Tabel"
msgid "SQL query on database %s :"
msgstr "Kueri SQL pada basis data %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Kirim Kueri"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Akses ditolak"
@@ -525,8 +524,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "%s cocok dalam tabel %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Jelajahi"
@@ -601,11 +600,11 @@ msgstr "View %s telah dihapus"
msgid "Table %s has been dropped"
msgstr "Tabel %s telah dihapus"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Pelacakan aktif"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Pelacakan tidak aktif."
@@ -619,7 +618,7 @@ msgstr ""
"%sdokumentasi%s"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Gambarkan"
@@ -664,7 +663,7 @@ msgstr "Pilih tabel berbeban tambahan"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -673,18 +672,19 @@ msgid "Export"
msgstr "Ekspor"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Tampilan cetak"
# Imperative menu
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Kosongkan"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -727,15 +727,14 @@ msgid "Tracked tables"
msgstr "Tabel yang dilacak"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Basis data"
@@ -753,7 +752,7 @@ msgstr "Diperbarui"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -944,13 +943,13 @@ msgstr "Tampilkan markah"
msgid "The bookmark has been deleted."
msgstr "Markah telah dihapus."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Gagal membaca berkas"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -980,7 +979,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Markah %s dibuat"
@@ -1007,8 +1006,8 @@ msgstr ""
"phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas "
"waktu eksekusi php."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1120,9 +1119,9 @@ msgid "Close"
msgstr "Tutup"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edit"
@@ -1146,7 +1145,7 @@ msgstr "Data statis"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Jumlah"
@@ -1157,12 +1156,12 @@ msgid "Other"
msgstr "Lainnya"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1245,13 +1244,13 @@ msgid "System swap"
msgstr "Swap sistem"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1309,27 +1308,27 @@ msgid "Connections"
msgstr "Koneksi"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1369,9 +1368,9 @@ msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Tidak ada"
@@ -1559,7 +1558,7 @@ msgstr "Jelaskan hasil"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Waktu"
@@ -1883,7 +1882,7 @@ msgstr "%d bukanlah nomor baris yang berlaku."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1897,7 +1896,7 @@ msgstr "Sembunyikan kriteria pencarian"
msgid "Show search criteria"
msgstr "Tampilkan kriteria pencarian"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Pencarian Zum"
@@ -2076,7 +2075,7 @@ msgstr "Ubah Sandi"
msgid "More"
msgstr "Lainnya"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2163,63 +2162,63 @@ msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Agu"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Des"
@@ -2257,32 +2256,32 @@ msgid "Sun"
msgstr "Min"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Sen"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Kam"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sab"
@@ -2426,11 +2425,11 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Perizinan yang salah pada file konfigurasi, sehingga tidak dapat ditulis!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Ukuran huruf"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Terlalu banyak pesan kesalahan, sebagian tidak bisa ditampilkan."
@@ -2438,39 +2437,39 @@ msgstr "Terlalu banyak pesan kesalahan, sebagian tidak bisa ditampilkan."
msgid "File was not an uploaded file."
msgstr "File bukan file unggah."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Berkas yang diunggah melewati ketentuan upload_max_filesize dalam php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
"Berkas yang diunggah melewati MAX_FILE_SIZE yang ditentukan dalam form HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Berkas yang diunggah hanya terunggah sebagian."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Folder sementara tidak ditemukan."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Gagal menulis berkas ke diska."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Pengunggahan berkas dihentikan oleh ekstensi."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Galat tidak dikenal sewaktu mengunggah berkas."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2478,11 +2477,11 @@ msgstr ""
"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation."
"html#faq1_11@Documentation]FAQ 3.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Terjadi galat sewaktu memindahkan berkas unggahan."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Tidak bisa membaca (memindah) file unggah."
@@ -2496,7 +2495,7 @@ msgstr "Indeks belum ditentukan!"
msgid "Indexes"
msgstr "Indeks"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2534,46 +2533,46 @@ msgstr ""
"Indeks %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan "
"untuk dibuang."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Basis data"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Tambahkan"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operasi"
@@ -2652,7 +2651,7 @@ msgstr "Plugin"
msgid "Engines"
msgstr "Mesin"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
@@ -2660,7 +2659,7 @@ msgstr "Galat"
# No difference between singular and plural in this case for Indonesian
# language.
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2668,7 +2667,7 @@ msgstr[0] "%1$d baris terpengaruh."
# No difference between singular and plural in this case for Indonesian
# language.
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2676,7 +2675,7 @@ msgstr[0] "%1$d baris telah dihapus."
# No difference between singular and plural in this case for Indonesian
# language.
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2718,46 +2717,46 @@ msgstr "%s didinonaktifkan untuk server MySQL ini."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Server MySQL ini tidak mendukung mesin penyimpanan %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "status tabel tidak diketahui:"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Basis data sumber"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s tidak ditemukan!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Basis data tidak valid"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Nama tabel tidak valid"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Galat sewaktu mengganti nama table %1$s menjadi %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Nama tabel %s telah diubah menjadi %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Tidak dapat menyimpan preferensi UI tabel"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2766,7 +2765,7 @@ msgstr ""
"Gagal membersihkan tabel UI preferences (lihat $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2777,16 +2776,16 @@ msgstr ""
"terus-menerus setelah Anda me-refresh halaman ini. Silakan periksa jika "
"struktur tabel telah berubah."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Tidak ada pratayang tersedia."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "ambil ini"
@@ -2838,7 +2837,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2879,13 +2878,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Buat versi %s dari %s.%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2896,7 +2895,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2914,7 +2913,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2927,7 +2926,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3026,77 +3025,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Buat indeks"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Segmen garis"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Spasial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3171,7 +3170,7 @@ msgstr "Pilihan Server"
msgid "Cookies must be enabled past this point."
msgstr "Mulai dari sini cookies harus diaktifkan."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3179,14 +3178,14 @@ msgstr ""
"Masuk tanpa kata sandi tidak diperbolehkan dalam konfigurasi (lihat "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Tidak ada aktivitas selama %s detik atau lebih. Harap masuk kembali"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Gagal masuk ke MySQL server"
@@ -3230,18 +3229,18 @@ msgstr "Tabel"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Beban"
@@ -3353,8 +3352,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Pencarian SQL"
@@ -3364,144 +3363,144 @@ msgstr "Pencarian SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL menyatakan: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Gagal melakukan koneksi ke validator SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Jelaskan SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Lewati Penjelasan SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Kode PHP tidak ditemukan"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Buat kode PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Segarkan"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Lewati Validasi SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validasi SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Edit langsung kueri ini di tempat"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Edit di tempat"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profil"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Minggu"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y pada %H.%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s hari, %s jam, %s menit dan %s detik"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Parameter yang hilang:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Awal"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Sebelumnya"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Berikutnya"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Akhir"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Langsung ke basis data "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Klik untuk beralih"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Telusuri komputer Anda:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Pilih dari direktori unggah %s pada web server:"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Tidak ada arsip untuk diunggah"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Eksekusi"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Cetak"
@@ -3585,68 +3584,68 @@ msgstr "keduanya dari yang di atas"
msgid "neither of the above"
msgstr "tidak keduanya dari yang di atas"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Bukan angka positif"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Bukan angka non-negatif"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Bukan angka port yang sah"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Nilai yang salah"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Nilai harus sama dengan atau lebih kecil dari %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Data hilang untuk %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "tidak tersedia"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" memerlukan ekstensi %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "proses impor tidak akan berjalan, fungsi (%s) tidak ditemukan"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "proses ekspor tidak akan berjalan, fungsi (%s) tidak ditemukan"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Validator SQL tidak diaktifkan"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Ekstensi SOAP tidak ditemukan"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maksimum %s"
@@ -3667,7 +3666,7 @@ msgid "Set value: %s"
msgstr "Tetapkan nilai: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Kembalikan nilai bawaan"
@@ -3964,7 +3963,7 @@ msgid "Character set of the file"
msgstr "Set karakter berkas"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4063,7 +4062,7 @@ msgstr "Kunci nama"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Jenis MIME"
@@ -4185,8 +4184,8 @@ msgstr "Sesuaikan opsi bawaan"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "Data CSV"
@@ -4597,15 +4596,21 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Jumlah minimum tabel yang ditampilkan di kotak filter tabel"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Jumlah minimum tabel yang ditampilkan di kotak filter tabel"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
"String yang memisahkan basis data ke dalam tingkat hierarki yang berbeda"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Pemisah hierarki basis data"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4613,40 +4618,40 @@ msgstr ""
"Hanya untuk versi ringan; tampilkan basis data dalam hierarki (ditentukan "
"oleh pemisah yang ditentukan di bawah)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Tampilkan basis data dalam hierarki"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
"Nonaktifkan opsi ini jika Anda ingin melihat semua basis data sekaligus"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Gunakan versi ringan"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Kedalaman hierarki tabel maksimum"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "String yang memisahkan tabel ke dalam tingkat hierarki yang berbeda"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Pemisah hierarki tabel"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL yang disasar oleh logo di bingkai navigasi"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL tautan logo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4654,60 +4659,60 @@ msgstr ""
"Buka halaman tertaut di jendela utama ([kbd]main[/kbd]) atau jendela baru "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Sasaran tautan logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Sorot server yang dikenai kursor"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Aktifkan penyorotan"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Jumlah maksimum tabel yang terakhir digunakan; masukkan 0 untuk menonaktifkan"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Tabel yang terakhir digunakan"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Jumlah karakter maksimum yang ditunjukkan pada kolom non-angka pada modus "
"jelajah"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Batas karakter kolom"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Hapus semua kuki sewaktu keluar"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Ingat nama pengguna"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4715,69 +4720,69 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Penyimpanan kuki masuk"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Validitas kuki masuk"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Textarea lebih besar untuk LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Jumlah maksimum karakter yang dipakai sewaktu menampilkan kueri SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Panjang SQL maksimum yang ditayangkan"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Pengguna tidak dapat menetapkan nilai yang lebih tinggi"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Jumlah maksimum basis data yang ditampilkan di bingkai kiri dan daftar basis "
"data"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Basis data maksimum"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Jumlah maksimum baris yang ditampilkan"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Jumlah maksimum tabel yang ditampilkan di daftar tabel"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Tabel maksimum"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4785,370 +4790,370 @@ msgstr ""
"Nonaktifkan peringatan bawaan yang ditampilkan sewaktu mcrypt tidak "
"ditemukan untuk autentikasi kuki"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "Peringatan mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Limit memori"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Ini adalah tautan Edit, Salin, dan Hapus"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Tempat menampilkan tautan baris tabel"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Gunakan urutan alami untuk pengurutan nama tabel dan basis data"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Urutan alami"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Gunakan hanya ikon, hanya teks, atau keduanya"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Bilah navigasi dengan ikon"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Penyanggaan keluaran GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Urutan bawaan"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Gunakan koneksi persisten ke basis data MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Koneksi persisten"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Operasi tabel dengan ikon"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Nonaktifkan penyuntingan kolom BLOB dan BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Lindungi kolom biner"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Riwayat kueri permanen"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Jumlah kueri yang disimpan dalam riwayat"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Panjang riwayat kueri"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Tab yang ditampilkan sewaktu membuka jendela kueri baru"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Tab jendela kueri bawaan"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Tinggi jendela kueri (dalam piksel)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Tinggi jendela kueri"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Lebar jendela kueri (dalam piksel)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Lebar jendela kueri"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Mesin pengode ulang"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Ingat urutan tabel"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Ulangi judul"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Simpan semua sel yang disunting sekaligus"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Direktori penyimpanan ekspor di server"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Direktori penyimpanan"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Biarkan kosong jika tidak digunakan"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Urutan otorisasi inang"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Biarkan kosong untuk menggunakan bawaan"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Aturan otorisasi inang"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Izinkan masuk tanpa sandi"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Izinkan masuk root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Berkas config SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Metode autentikasi yang dipakai"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Jenis autentikasi"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabel markah"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabel informasi kolom"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Pampatkan koneksi"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Jenis koneksi"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Sandi pengguna pengendali"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Pengguna pengendali"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Inang pengendali"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Hitung tabel sewaktu menunjukkan daftar basis data"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Hitung tabel"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabel desainer"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Noaktifkan penggunaan INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Ekstensi PHP yang dipakai"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Sembunyikan basis data"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabel riwayat kueri SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Nama inang yang menjalankan server MySQL"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Nama inang server"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL keluar"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Jumlah maksimum tabel yang ditampilkan di daftar tabel"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Coba koneksi tanpa sandi"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Tersambung tanpa sandi"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5157,192 +5162,192 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Tampilkan hanya basis data terdaftar"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Sandi untuk autentikasi config"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "Skema PDF: tabel halaman"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Nama basis data"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Porta server"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Tabel yang baru digunakan"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Tabel relasi"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Perintah SQL untuk mengambil basis data yang tersedia"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Perintah SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Nama sesi Signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL Signon"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Socket server"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Aktifkan SSL untuk koneksi ke server MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Gunakan SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Skema PDF: koordinat tabel"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Tabel kolom tampilan"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Tabel preferensi UI"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Tambahkan DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Tambahkan DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Tambahkan DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Statement untuk dilacak"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabel pelacakan kueri SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Buat versi secara otomatis"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5350,15 +5355,15 @@ msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabel penyimpanan preferensi pengguna"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Pengguna autentikasi config"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5366,100 +5371,100 @@ msgstr ""
"Deskripsi server yang lebih jelas. Biarkan kosong untuk menampilkan nama "
"inang saja."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Nama deskriptif server"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Tampilkan tombol "tampilkan semua (baris)" kepada pengguna"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Izinkan tampilan semua baris"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Tampilkan formulir penggantian sandi"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Tampilkan formulir pembuatan basis data"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Tampilkan tindakan lain"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Tampilkan status master"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Tampilkan arah tampilan"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Tampilkan jenis isian"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Menampilkan isian fungsi pada modus edit/tambahkan"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Tampilkan isian fungsi"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Tampilkan petunjuk"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5467,52 +5472,52 @@ msgstr ""
"Tampilkan tautan untuk melihat hasil [a@http://php.net/manual/function."
"phpinfo.php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Tampilkan tautan phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Tampilkan informasi detail server MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Tampilkan kueri SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Sembunyikan kotak kueri"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Tampilkan statistik"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Tampilkan komentar basis data dan bukan namanya"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5520,28 +5525,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Tampilkan komentar tabel dan bukan namanya"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Tampilkan komentar tabel pada balon informasi"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Lewati tabel terkunci"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5551,76 +5556,76 @@ msgstr ""
msgid "Password"
msgstr "Kata Sandi"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Aktifkan Validator SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Nama Pengguna"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Menampilkan peringatan pada halaman utama jika Suhosin terdeteksi"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Peringatan Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Kolom textarea"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Baris textarea"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Judul jendela peramban sewaktu basis data dipilih"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Judul jendela peramban sewaktu tidak ada yang dipilih"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Judul bawaan"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Judul jendela peramban sewaktu server dipilih"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Judul jendela peramban sewaktu tabel dipilih"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5628,59 +5633,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Daftar proksi tepercaya untuk allow/deny IP"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Direktori server tempat mengunggah berkas ekspor"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Direktori unggahan"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Mengizinkan pencarian terhadap seluruh basis data"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Gunakan pencarian basis data"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Aktifkan tab pengembang dalam pengaturan"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Periksa versi terbaru"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Pemeriksaan versi"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5701,84 +5706,84 @@ msgid "Signon authentication"
msgstr "Autentikasi signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV menggunakan LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Cepat"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Kustom"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opsi ekspor basis data"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV untuk data MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Tidak dapat terhubung ke server Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Kosongkan nama pengguna sewaktu menggunakan metode autentikasi config"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"Kosongkan nama sesi signon sewaktu menggunakan metode autentikasi signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Kosongkan URL signon sewaktu menggunakan metode autentikasi signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Kosongkan pengguna pengendali phpMyAdmin sewaktu menggunakan pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"Kosongkan sandi pengguna pengendali phpMyAdmin sewaktu menggunakan pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Alamat IP tidak tepat: %s"
@@ -5798,7 +5803,7 @@ msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5806,15 +5811,15 @@ msgstr ""
"Server tidak merespons (atau soket server lokal tidak dikonfigurasi dengan "
"benar)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Server tidak merespons."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Harap periksa hak akses direktori basis data."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Rincian..."
@@ -5879,7 +5884,7 @@ msgstr "Buat tabel"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nama"
@@ -6031,26 +6036,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Konversi Pengodean:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "Buat versi %s dari %s.%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6741,18 +6746,17 @@ msgid "Display MIME types"
msgstr "Tampilkan jenis MIME"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Inang"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Waktu pembuatan"
@@ -6954,15 +6958,7 @@ msgstr "Data untuk visualisasi GIS tidak ditemukan."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Hasil SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Diciptakan oleh"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL memberikan hasil kosong (atau nol baris)."
@@ -7057,7 +7053,7 @@ msgstr ""
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Nama tabel"
@@ -7414,7 +7410,7 @@ msgstr "Pembuatan PDF"
msgid "Displaying Column Comments"
msgstr "Tampilkan komentar kolom"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformasi Browser"
@@ -7513,10 +7509,10 @@ msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Nilai"
@@ -7575,7 +7571,7 @@ msgstr "Menghasilkan kata sandi"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7611,8 +7607,8 @@ msgid "Edit event"
msgstr "Edit event"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Galat sewaktu memproses permintaan."
@@ -7662,7 +7658,7 @@ msgstr "Sewaktu selesai pertahankan"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7716,7 +7712,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Jenis routine invalid: \"%s\""
@@ -7787,17 +7783,17 @@ msgstr "Jenis keamanan"
msgid "SQL data access"
msgstr "Akses data SQL"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Anda harus memasukkan nama routine"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -7805,40 +7801,40 @@ msgstr ""
"Anda harus memasukkan panjang/nilai untuk parameter routine bagi jenis ENUM, "
"SET, VARCHAR, dan VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Anda harus memasukkan nama dan jenis setiap parameter routine."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Anda harus memasukkan jenis hasil yang valid untuk routine."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Anda harus memasukkan definisi routine."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Hasil eksekusi routine %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Jalankan routine"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Parameter routine"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Fungsi"
@@ -8015,7 +8011,7 @@ msgstr "Daftar Isi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atribut"
@@ -8114,12 +8110,12 @@ msgid "Toggle scratchboard"
msgstr "pindah buku catatan (Scratchboard)"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Bahasa tidak dikenal: %1$s."
@@ -8165,7 +8161,7 @@ msgstr "Jalankan perintah SQL pada basis data %s"
msgid "Run SQL query/queries on database %s"
msgstr "Jalankan perintah SQL pada basis data %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Bersihkan"
@@ -8174,11 +8170,11 @@ msgstr "Bersihkan"
msgid "Columns"
msgstr "Kolom"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Markahi kueri SQL ini"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Izinkan semua pengguna untuk mengakses markah ini"
@@ -8277,13 +8273,13 @@ msgstr ""
"Validator SQL tidak dapat dijalankan. Harap periksa kembali ekstension PHP "
"yang diperlukan seperti yang tercatat dalam %sdokumentasi%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "Pelacakan %s.%s diaktifkan."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8295,7 +8291,7 @@ msgstr ""
"petik tunggal (\"'\"), awali dengan petik balik (mis. '\\\\xyz' atau 'a"
"\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8303,19 +8299,19 @@ msgstr ""
"Untuk nilai (value) default cukup diisi single value saja tanpa menggunakan "
"backslash, escaping atau quotes dan dengan menggunakan format sbb.: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Hapus kolom"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8324,11 +8320,11 @@ msgstr ""
"Untuk tampilan daftar tentang pilihan transformasi dan transformasi jenis "
"MIME-nya, harap klik pada %sDeskripsi Transformasi%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Pilihan transformasi"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8340,72 +8336,72 @@ msgstr ""
"Quote (\"'\") diperlukan di antara nilai tersebut, harap gunakan tanda "
"Backslash (contoh: '\\\\xyz' atau 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Data ENUM atau SET terlalu panjang?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Dapatkan ruang pengeditan lebih luas"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Tidak ada"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Seperti yang didefinisikan"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Kunci Utama"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Teks penuh"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Setelah %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Tambahkan %s kolom"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Anda perlu menambahkan paling tidak satu kolom."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Mesin Penyimpanan"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definisi PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Pencarian Tabel"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Edit/Tambah"
@@ -8560,11 +8556,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Konfigurasi tidak dapat disimpan"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8574,8 +8570,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Tidak ada berkas ditemukan dalam arsip ZIP!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Galat pada arsip ZIP:"
@@ -8744,16 +8740,22 @@ msgstr ""
msgid "No databases"
msgstr "Basis data tidak ditemukan"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filter tabel menurut nama"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filter tabel menurut nama"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Buat tabel"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Harap pilih basis data"
@@ -9902,7 +9904,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Perintah sejak awal: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Keterangan"
@@ -11028,37 +11030,37 @@ msgstr "Abaikan galat"
msgid "Show form"
msgstr "Tampilkan formulir"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11067,39 +11069,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11107,21 +11109,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11130,7 +11132,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11140,41 +11142,41 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it."
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"Anda sebaiknya menggunakan sambungan SSL jika server web Anda mendukung."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Anda sebaiknya menggunakan mysqli demi alasan kinerja."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Anda mengizinkan sambungan ke server tanpa sandi."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
"Kunci terlalu pendek dan sebaiknya terdiri dari paling tidak 8 karakter."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus."
@@ -11182,8 +11184,8 @@ msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus."
msgid "Wrong data"
msgstr "Data salah"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Menjelajahi nilai luar"
@@ -11215,21 +11217,29 @@ msgstr "Menampilkan kueri SQL"
msgid "Validated SQL"
msgstr "SQL tervalidasi"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Hasil SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Diciptakan oleh"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Judul"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabel %1$s berhasil diubah"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11359,7 +11369,7 @@ msgstr "Nilai Y"
msgid "Table %s already exists!"
msgstr "Tabel %s sudah ada!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabel %1$s telah dibuat."
@@ -11562,43 +11572,43 @@ msgstr "Hapus partisi"
msgid "Check referential integrity:"
msgstr "Cek integriti referensial:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Menampilkan tabel"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Penggunaan ruang"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Penggunaan"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektif"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistik Baris"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamis"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Panjang baris"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Besar baris "
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Indeks otomatis berikut"
@@ -11893,29 +11903,29 @@ msgstr "Lacak manipulasi data dari pernyataan berikut:"
msgid "Create version"
msgstr "Buat versi"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Lakukan \"kueri dengan contoh\" (wildcard: \"%\") untuk dua kolom yang "
"berbeda"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Kriteria pencarian tambahan"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Cara pakai"
diff --git a/po/it.po b/po/it.po
index 2340732b90..1246a05294 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-07 14:32+0200\n"
"Last-Translator: Rouslan Placella \n"
"Language-Team: italian \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Mostra tutti"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Numero pagina:"
@@ -40,30 +40,30 @@ msgstr ""
"sicurezza."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Cerca"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Cerca"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Esegui"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Commento del database: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Commenti alla tabella"
@@ -125,14 +125,14 @@ msgstr "Commenti alla tabella"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Campo"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Campo"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -157,9 +157,9 @@ msgstr "Tipo"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -169,7 +169,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Predefinito"
@@ -178,18 +178,18 @@ msgstr "Predefinito"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Collegamenti a"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Commenti"
@@ -200,11 +200,11 @@ msgstr "Commenti"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "No"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Sì"
msgid "View dump (schema) of database"
msgstr "Visualizza dump (schema) del database"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Non ci sono tabelle nel database."
@@ -323,8 +323,8 @@ msgstr "Passa al database copiato"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Modifica o esporta schema relazionale"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "Modifica o esporta schema relazionale"
msgid "Table"
msgstr "Tabella"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Righe"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Dimensione"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "in uso"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Creazione"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Ultimo cambiamento"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Ultimo controllo"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -482,13 +481,13 @@ msgstr "Utilizza tabelle"
msgid "SQL query on database %s :"
msgstr "SQL-query sul database %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Invia Query"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Accesso negato"
@@ -522,8 +521,8 @@ msgstr[0] "%1$s corrispondenza nella tabella %2$s "
msgstr[1] "%1$s corrispondenze nella tabella %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Mostra"
@@ -599,11 +598,11 @@ msgstr "La vista %s è stata eliminata"
msgid "Table %s has been dropped"
msgstr "La tabella %s è stata eliminata"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Il tracking è attivo."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Il tracking non è attivo."
@@ -617,7 +616,7 @@ msgstr ""
"controlla la %sdocumentazione%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vista"
@@ -662,7 +661,7 @@ msgstr "Controllo addizionale"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -671,17 +670,18 @@ msgid "Export"
msgstr "Esporta"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Visualizza per stampa"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Svuota"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -724,15 +724,14 @@ msgid "Tracked tables"
msgstr "Tabelle monitorate"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Database"
@@ -750,7 +749,7 @@ msgstr "Aggiornato"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Stato"
@@ -943,13 +942,13 @@ msgstr "Visualizzazione segnalibri"
msgid "The bookmark has been deleted."
msgstr "Il bookmark è stato cancellato."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Il file non può essere letto"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -983,7 +982,7 @@ msgstr ""
"Non è stato possibile caricare i plugin di importazione, controlla la tua "
"installazione!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Segnalibro %s creato"
@@ -1010,8 +1009,8 @@ msgstr ""
"evidenzia che il limite di tempo impostato nella configurazione è troppo "
"basso per consentire a phpMyAdmin di terminare l'operazione."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1120,9 +1119,9 @@ msgid "Close"
msgstr "Chiudi"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Modifica"
@@ -1146,7 +1145,7 @@ msgstr "Dati statici"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Totale"
@@ -1157,12 +1156,12 @@ msgid "Other"
msgstr "Altre"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1246,13 +1245,13 @@ msgid "System swap"
msgstr "Swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1310,27 +1309,27 @@ msgid "Connections"
msgstr "Connessioni"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1370,9 +1369,9 @@ msgstr "Aggiungi almeno una variabile alla serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Nessuno"
@@ -1562,7 +1561,7 @@ msgstr "Spiega l'output"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tempo"
@@ -1884,7 +1883,7 @@ msgstr "%d non è un numero valido di righe."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1898,7 +1897,7 @@ msgstr "Nascondi criteri di ricerca"
msgid "Show search criteria"
msgstr "Mostra criteri di ricerca"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Ricerca Zoom"
@@ -2079,7 +2078,7 @@ msgstr "Cambia password"
msgid "More"
msgstr "Più"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2166,63 +2165,63 @@ msgid "December"
msgstr "Dicembre"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mag"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Giu"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Lug"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Ott"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dic"
@@ -2260,32 +2259,32 @@ msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Gio"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sab"
@@ -2427,11 +2426,11 @@ msgstr ""
"Permessi incorretti sul file di configurazione, non deve essere scrivibile "
"da tutti!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Dimensione font"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Troppi errori, alcuni messaggi non verranno visualizzati."
@@ -2439,38 +2438,38 @@ msgstr "Troppi errori, alcuni messaggi non verranno visualizzati."
msgid "File was not an uploaded file."
msgstr "Il file non era un file caricato."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
"Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Il file è stato solo parzialmente caricato."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Non trovo la cartella temporanea."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Non riesco a scrivere il file su disco."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Caricamento del file interrotto per estensione errata."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Si é verificato un errore sconosciuto durante il caricamento del file."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2478,11 +2477,11 @@ msgstr ""
"Errore nello spostare il file caricato, vedi [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Si é verificato un errore durante lo spostamento del file."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Impossibile leggere dal file (dopo lo spostamento) caricato."
@@ -2496,7 +2495,7 @@ msgstr "Nessun indice definito!"
msgid "Indexes"
msgstr "Indici"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2534,46 +2533,46 @@ msgstr ""
"Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, "
"possibilmente, essere rimosso."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Database"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struttura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Inserisci"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operazioni"
@@ -2652,27 +2651,27 @@ msgstr "Plugin"
msgid "Engines"
msgstr "Motori"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Errore"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d riga modificata."
msgstr[1] "%1$d righe modificate."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d riga cancellata."
msgstr[1] "%1$d righe cancellate."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2717,44 +2716,44 @@ msgstr "%s è stato disabilitato su questo server MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Questo server MySQL non supporta il motore di memorizzazione %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "stato della tabella sconosciuto: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "Database di origine `%s` non é stato trovato!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "Tema `%s` non é stato trovato!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Database non valido"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Nome tabella non valido"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Errore nel rinominare la tabella %1$s in %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "La tabella %1$s è stata rinominata %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
"Impossibile salvare la tabella delle preferenze per l'interfaccia utente"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2763,7 +2762,7 @@ msgstr ""
"Impossibile ripulire la tabella delle preferenze UI (v. $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2774,17 +2773,17 @@ msgstr ""
"saranno mantenuti se ricaricate questa pagina. Controllate se la struttura "
"della tabella è cambiata."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
"Non è stato trovato nessun percorso per l'immagine valido per il tema %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Nessuna anteprima disponibile."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "prendilo"
@@ -2836,7 +2835,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2877,13 +2876,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Crea versione %1$s di %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2894,7 +2893,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2912,7 +2911,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2925,7 +2924,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3024,77 +3023,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Crea un nuovo indice"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Linestring"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3167,22 +3166,22 @@ msgstr "Scelta del server"
msgid "Cookies must be enabled past this point."
msgstr "Da questo punto in poi, i cookie devono essere abilitati."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Login senza password è vietato dalla configurazione (vedi AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Nessuna attività da %s secondi o più, si prega di autenticarsi nuovamente"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Impossibile eseguire il login nel server MySQL"
@@ -3226,18 +3225,18 @@ msgstr "Tabelle"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Dati"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overhead"
@@ -3345,8 +3344,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Query SQL"
@@ -3356,144 +3355,144 @@ msgstr "Query SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Messaggio di MySQL: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Non sono riuscito a connettermi all'SQL Validator!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Spiega SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Non Spiegare SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Senza codice PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Crea il codice PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Aggiorna"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Non Validare SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Valida SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Modifica inline di questa query"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profiling"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y alle %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s giorni, %s ore, %s minuti e %s secondi"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Parametro mancante:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Inizio"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Precedente"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Prossima"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Ultima"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Passa al database "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La %s funzionalità è affetta da un bug noto, vedi %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Clicca per alternare"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Cerca sul tuo computer:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Selezionare dalla cartella di upload del server web %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "La directory impostata per l'upload non può essere trovata"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Nessun file da caricare"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Esegui"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Stampa"
@@ -3577,68 +3576,68 @@ msgstr "entrambi i precedenti"
msgid "neither of the above"
msgstr "nessuno dei precedenti"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Non è un numero positivo"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Non è un numero non negativo"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Numero della porta non valido"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Valore non corretto"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Il valore deve essere uguale o minore di %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Dati mancanti per %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "non disponibile"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" richiede l'estensione %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "l'importazione non funzionerà, funzione (%s) mancante"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "l'esportazione non funzionerà, funzione (%s) mancante"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Il Validatore SQL é disattivato"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Estensione SOAP non trovata"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "massimo %s"
@@ -3659,7 +3658,7 @@ msgid "Set value: %s"
msgstr "Imposta valore: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Ripristinare valori predefiniti"
@@ -3966,7 +3965,7 @@ msgid "Character set of the file"
msgstr "Codifica dei caratteri del file"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formato"
@@ -4065,7 +4064,7 @@ msgstr "Chiave etichetta"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Tipo MIME"
@@ -4190,8 +4189,8 @@ msgstr "Personalizza le opzioni predefinite"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4633,14 +4632,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Numero minimo di tabelle per visualizzare il riquadro di filtraggio"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Numero minimo di tabelle per visualizzare il riquadro di filtraggio"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Stringa che separa i database in livelli dell'albero differenti"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Separatore dell'albero database"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4648,39 +4653,39 @@ msgstr ""
"Solo per la versione light; visualizza i database in un albero (determinato "
"dal separatore definito in basso)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Visualizza i database in un albero"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Disabilitalo se vuoi vedere tutti i database immediatamente"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Usa versione leggera"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Massima profonditá per l'albero delle tabelle"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "La stringa che separa le tabelle in diversi livelli dell albero"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Separatore dell'albero di tabelle"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "L'indirizzo per il collegamento del logo nella frame di configurazione"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL del collegamento per il logo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4688,40 +4693,40 @@ msgstr ""
"Apri la pagina nella finestra principale ([kbd]main[/kbd]) o in una finestra "
"nuova ([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Destinazione del collegamento per il logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Evidenzia il server sotto il cursore del mouse"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Abilita evidenziamento"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Il massimo numero di tabelle recenti da visualizzare; imposta 0 per "
"disabilitare"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Tabelle utilizzate recentemente"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Il massimo numero di caratteri mostrati in qualsiasi campo non-numerico con "
"la vista di navigazione"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Limita i caratteri dei campi"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4732,11 +4737,11 @@ msgstr ""
"opzione é impostata a FALSE è facile dimenticare di uscire anche dagli altri "
"server, quando si é connessi a multipli server."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Elimina tutti i cookie al logout"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4744,11 +4749,11 @@ msgstr ""
"Stabilisci se il login precedente deve essere ricordato o no, nel modo di "
"autenticazione cookie"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Ricorda nome utente"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4760,51 +4765,51 @@ msgstr ""
"solo per la sessione esistente, e verrá rimorro al momento della chiusura "
"della finestra del browser. Questo é consigliato per ambienti di sfiducia."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Store del cookie di login"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Stabilisce per quanto tempo (in secondi) un cookie di login è valido"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Validitá per il cookie di login"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Raddoppia l dimensione dell'area di testo per campi LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Un area di testo piú grande per LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
"Il massimo numero di caratteri utilizzati per visalizzare una query SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Lunghezza massima per visualizzazione SQL"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Gli utenti non possono impostare un valore maggiore"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Il massimo numero di database da visualizzare nella frame sinistra e la "
"lista dei database"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Massimi numero dei database"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4814,19 +4819,19 @@ msgstr ""
"risultati contengono ulteriori righe i collegamenti "Precedente" e "
""Seguente" saranno mostrati."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Il massimo numero di righe da visualizzare"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Il massimo numero di tabelle da visualizzare nella lista di tabelle"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Il massimo numero di tabelle"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4834,11 +4839,11 @@ msgstr ""
"Disabilita l'avviso predefinito che viene visualizzato se mcrypt é mancante "
"per autenticazione via cookie"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "avviso mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4846,46 +4851,46 @@ msgstr ""
"Il numero di byte che è consentito di allocare, ad esempio [kbd]32M[/kbd] "
"([kbd]0[/kbd] per nessun limite)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Limite memoria"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Questi sono i collegamenti per Modifica, Copia ed Eliminazione"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Dove mostrare i collegamenti per le righe delle tabelle"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
"Utilizza un ordine naturale per ordinare i nomi delle tabelle e dei database"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Ordine naturale"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Utilizza solo icone, solo testo o entrambi"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Barra di navigazione iconica"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"utilizza il buffer di uscita GZip per una maggiore velocità nei "
"trasferimenti via HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "utilizza il buffer di uscita GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4893,19 +4898,19 @@ msgstr ""
"[kbd]SMART[/kbd] - ad esempio ordine decrescente per i campi dei tipi TIME, "
"DATE, DATETIME e TIMESTAMP, ordine crescente altrimenti"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Ordinamento predefinito"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Usa connessioni persistenti per i server MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Connessione persistente"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4915,23 +4920,23 @@ msgstr ""
"dettagli della Struttura dei database, se qualche tabella necessaria per la "
"memorizzazzione della configurazione di phpMyAdmin non viene trovata"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Mancano le tabelle di configurazione di phpMyAdmin"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Operazioni iconiche per le tabelle"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Disabilita l'opzione di modifica dei campi BLOB e BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Proteggi campi binari"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4942,118 +4947,118 @@ msgstr ""
"disabilitata, questa utilizzera funzioni JS per visualizzare la cronologia "
"delle query (persa alla chiusura della finstra)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Cronologia delle query permanente"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Il numero di query da mantenere nella cronologia"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Lunghezza per la cronologia delle query"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
"La tabulazione da visualizzare quando una nuova finestra di query viene "
"aperta"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Scheda predefinita per la finestra query"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Altezza finestra query (in pixels)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Altezza finestra query"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Larghezza finestra query (in pixel)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Larghezza finestra query"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Seleziona le funzioni che saranno usate per la conversione dell'insieme di "
"caratteri"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Motore di registrazione"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
"L'ordine delle tabelle é memorizzato durante la navigazione delle tabelle"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Ricorda l'ordine delle tabelle"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Repeti le instestazioni ogni X celle, [kbd]0[/kbd] disattiva questa "
"funzionalitá"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Ripeti intestazioni"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Salva tutte le celle modificate"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "La cartella sul server dove è possibile salvare le esportazioni"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Salva cartella"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Lascia vuoto se non usato"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Ordine dei permessi del host"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Lascia vuoto per i valori predefiniti"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Regole dei permessi del host"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Consenti login senza la parola chiave"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Consenti login per utenti root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "Il nome del Basic Auth Realm da visualizzare durante HTTP Auth"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Realm HTTP"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5063,19 +5068,19 @@ msgstr ""
"autenticazione hardware SweKey[/a] (not salvata nella cartella document "
"root; percorso consigliato: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "File di configurazione SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Metodo di autenticazione da usare"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Tipo di autenticazione"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5083,11 +5088,11 @@ msgstr ""
"Lascia vuoto per disattivare il supporto per i [a@http://wiki.phpmyadmin.net/"
"pma/bookmark]segnalibri[/a], consigliato: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabella dei segnalibri"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5095,31 +5100,31 @@ msgstr ""
"Lascia vuoto per diattivare i commenti/tipi mime per i campi, consigliato: "
"[kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabella delle informazioni sui campi"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Comprimi la connessione al server MySQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Comprimi la connessione"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Come connettersi al server, lascia [kbd]tcp[/kbd] se non sei sicuro"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Tipo di connessione"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Parola chiave per l'utente di controllo"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5128,11 +5133,11 @@ msgstr ""
"ulteriori informazioni disponibili nella [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Utente di controllo"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5140,19 +5145,19 @@ msgstr ""
"Un host alternativo per memorizzare la configurazione; lasciate in bianco "
"per utilizzare l'host già definito"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Host di controllo"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Conta le tabelle quando la lista dei database viene mostrata"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Conta tabelle"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5160,11 +5165,11 @@ msgstr ""
"Lascia vuoto disattivare il supporto per Designer, consigliato: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabella di design assistito"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5172,29 +5177,29 @@ msgstr ""
"Maggiori informazioni su [a@http://sf.net/support/tracker.php?aid=1849494]"
"PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Disabilita l'utilizzo di INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Il tipo di estensione PHP da utilizzare; dovresti utilizzare mysqli, se "
"questo é supportato"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Estensioni PHP da utilizzare"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Nascondi i database corrispondenti all'espressione regolare (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Nascondi i database"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5202,23 +5207,23 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per la cronologia delle query SQL, "
"consigliato: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabella di cronologia delle query SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Il nome host dove is server MySQL é in esecuzione"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Nome host del server"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Url di logout"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5226,19 +5231,19 @@ msgstr ""
"Limita il numero delle preferenze di tabella che sono memorizzate nel "
"database, i record più vecchi sono rimossi automaticamente"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Numero massimo di preferenze di tabella da memorizzare"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Prova ad effettuare la connessione senza una parola chiave"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Effettua connessione senza la parola chiave"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5253,30 +5258,30 @@ msgstr ""
"utilizzare [kbd]*[/ kbd] alla fine per mostrare il resto in ordine "
"alfabetico."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Mostra solo i database dalla lista"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Lascia vuoto su il config auth non é utilizzato"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Parola chiave per config auth"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Lascia vuoto disabilitare il supporto per i schemi PDF, consigliato: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "Schema PDF: tabella delle pagine"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5286,20 +5291,20 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] per tutti dettagli. Lascia "
"vuoto per disabilitarne il supporto. Consigliato: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Nome del database"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"La dove il server MySQL ascolta, lascia vuoto per il valore predefinito"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Porta del server"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5307,11 +5312,11 @@ msgstr ""
"Lascia vuoto per disabilitare la memorizzazione delle tabelle recenti nel "
"database, consigliato: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Tabella utilizzata recentemente"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5319,19 +5324,19 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per [a@http://wiki.phpmyadmin.net/"
"pma/relation]relation-links[/a], consigliato: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Tabella relazionale"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Commando SQL per ritrovare i database disponibili"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Commando SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5339,44 +5344,44 @@ msgstr ""
"Vedi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipi di "
"autenticazione[/a] per un esempio"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Nome della sessione di signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "L'URL di signon"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Il socket sul quale il server MySQL ascolta, lascia vuoto per il valore "
"predefinito"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Socket del server"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Abilita SSL per la connessione al server MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Utilizza SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Lascia vuoto per disabilita il supporto dello schema PDF, consigliato: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Schema PDF: coordinate delle tabelle"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5384,11 +5389,11 @@ msgstr ""
"La tabella che descrive i campi di visualizzazione, lascia vuoto per "
"disabilitarne il supporto; consigliato: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Visualizza i campi della tabella"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5397,11 +5402,11 @@ msgstr ""
"dell'interfaccia utenti nel database, consigliato: [kbd]pma_table_uiprefs[/"
"kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Tabella di memorizzazione delle preferenze dell'interfaccia utente"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5409,11 +5414,11 @@ msgstr ""
"Se aggiungere un instruzione DROP DATABASE IF EXISTS sulla prima linea del "
"log quando viene creato un database."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Aggiungi DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5421,11 +5426,11 @@ msgstr ""
"Se aggiungere un instruzione DROP TABLE IF EXISTS sulla prima linea del log "
"quando viene creato una tabella."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Aggiungi DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5433,21 +5438,21 @@ msgstr ""
"Se aggiungere un instruzione DROP VIEW IF EXISTS sulla prima linea del log "
"quando viene creata una vista."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Aggiungi DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definisce la lista delle istruzioni the l'auto-creazione utilizza per le "
"nuove versioni."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Istruzioni da monitorare"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5455,11 +5460,11 @@ msgstr ""
"Lascia vuoto per disabilitare il supporto per il monitoriaggio delle query "
"SQL, consigliato: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabella de monitoraggio delle query SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5467,11 +5472,11 @@ msgstr ""
"Se il meccanismo di monitoraggio crea versioni per tabelle e viste "
"automaticamente."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Crea versioni automaticamente"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5479,15 +5484,15 @@ msgstr ""
"Lascia vuoto per disabilitare la memorizzazione delle preferenze degli "
"utenti nel database, consigliato: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabella di memorizzazione delle preferenze degli utenti"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Utente per il config auth"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5495,20 +5500,20 @@ msgstr ""
"Una descrizione di facile utilizzo di questo server. Lascia vuoto per "
"visualizzare il nome host, invece."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Nome completo di questo server"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Se visualizzare all'utente un pulsante "mostra tutte le (righe)""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Consenti la visualizzazione di tutte le righe"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5519,45 +5524,45 @@ msgstr ""
"di configurazione; questo non limita la capacità di eseguire lo stesso "
"comando direttamente"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Mostra il modulo di modifica della parola chiave"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Mostra il modulo di creazione dei database"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Mostra piú azioni"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Mostra lo stato del master"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5565,11 +5570,11 @@ msgstr ""
"Definisce se mostrare l'opzione della direzione di visualizzazione durante "
"la navigazione delle tabelle"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Mostra l'orientamento del display"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5577,28 +5582,28 @@ msgstr ""
"Stabilisce se i tipi dei campi dovrebbero essere visualizzati inizialmente "
"nella modalitá di inserimento/modifica"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Mostra i tipi di campi"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
"Visualizza i campi delle funzioni nelle modalita di inserimento/modifica"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Mostra i campi delle funzioni"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Se mostrare il suggerimento o meno"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Mostra suggerimento"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5606,46 +5611,46 @@ msgstr ""
"Mostra un collegamento all'output di [a@http://php.net/manual/function."
"phpinfo.php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Mostra un collegamento a phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Mostra informazioni dettagliate del server MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Definisce se le query SQL generate da phpMyAdmin devrebbero essere "
"visualizzate"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Mostra query SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Definisce se la finestra della query deve stare sullo schermo dopo la "
"conferma"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Nascondi riquadro query SQL"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Consenti la visualizzazione delle statistiche dei database e tabelle (ad "
"esempio spazio utilizzato)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Mostra statistiche"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5653,11 +5658,11 @@ msgstr ""
"Se i tooltip sono abilitati e un commento del database è impostato, questo "
"scambierá il commento ed il vero nome"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Visualizza i commenti dei database, invece dei nomi corrispondenti"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5670,30 +5675,30 @@ msgstr ""
"cartella è chiamata come l'alias, ma il nome della tabella stessa rimane "
"invariato"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Visualizza i commenti delle tabelle, invece dei nomi corrispondenti"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Visualizza i commenti delle tabelle nei tooltip"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Segna le tabelle come utilizzate e quindi consenti la visualizzazione dei "
"database con delle tabelle bloccate"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Ignora le tabelle bloccate"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Richiede l'abilitazione del validatore SQL"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5703,7 +5708,7 @@ msgstr "Richiede l'abilitazione del validatore SQL"
msgid "Password"
msgstr "Password"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5711,11 +5716,11 @@ msgstr ""
"[strong]Avviso:[/strong] richiede l'estensione SOAP di PHP o l'installazione "
"di PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Abilita il validatore SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5723,20 +5728,20 @@ msgstr ""
"Se hai un nome utente personalizzato, specificalo qui (il predefinito é [kbd]"
"anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Nome utente"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Mostra un avviso sulla pagina principale se Suhosin é stato trovato"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Avviso Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5745,11 +5750,11 @@ msgstr ""
"valore incrementato per le aree di testo delle query SQL (x2) e per la "
"finestra di query (x1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Campi di aree di testo"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5758,31 +5763,31 @@ msgstr ""
"valore incrementato per le aree di testo delle query SQL (x2) e per la "
"finestra di query (x1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Righe con aree di testo"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Titolo della finestra del browser quando un database è selezionato"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Titolo della finestra del browser quando nessun oggetto è selezionato"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Titolo Predefinito"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titolo della finestra del browser quando un server è selezionato"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Titolo della finestra del browser quando una tebella è selezionata"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5794,28 +5799,28 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente dalla proxy 1.2.3.4[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista dei proxy di fiducia per filtarre gli IP, accetta/rifiuta"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"La cartella sul server dove è possibile caricare i file per l'importazione"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Cartella di caricamento"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Consenti la ricerca all'interno di un intero database"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Utilizza la ricerca dei database"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5823,29 +5828,29 @@ msgstr ""
"Quando disabilitato, gli utenti non possono impostare alcune opzioni "
"sottostanti, indipendentemente dalla casella di controllo sulla destra"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Abilita la tabulazione per Sviluppatori nelle impostazioni"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Controlla l'ultima versione"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Abilita la prova per la versione più recente sulla pagina principale di "
"phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Controllo versione"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5853,7 +5858,7 @@ msgstr ""
"Abilita la compressione [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP"
"[/a] per le operazioni di importazione ed esportazione"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5874,90 +5879,90 @@ msgid "Signon authentication"
msgstr "Autenticazione via signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV usando LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Foglio di calcolo nel formato Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Veloce"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Personalizzazato"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opzioni di esportazione per database"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV per dati MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Testo nel formato Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Non riesco ad inizializzare la libreria di connessione Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Impossibile effettuare la connessione al server Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Impossibile effettuare la connessione al server MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"Rimuovi il nome utente durante l'utilizzo del metodo di autenticazione config"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"Rimuovi il nome della sessione signon durante l'utilizzo del metodo di "
"autenticazione signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"Rimuovi l'URL di signon durante l'utilizzo del metodo di autenticazione "
"signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
"Rimuovi l'utente di controllo di phpMyAdmin durante l'utilizzo di pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"Rimuovi la parola chiave dell'utente di controllo di phpMyAdmin durante "
"l'utilizzo di pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Indirizzo IP non corretto: %s"
@@ -5977,7 +5982,7 @@ msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP."
msgid "possible deep recursion attack"
msgstr "possibile attacco di ricorsione in profondità"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5985,15 +5990,15 @@ msgstr ""
"Il server non risponde (o il socket del server locale MySQL non è "
"correttamente configurato)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Il server non risponde."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Controllate i privilegi della cartella che contiene il database."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Dettagli..."
@@ -6058,7 +6063,7 @@ msgstr "Crea tabelle"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nome"
@@ -6218,26 +6223,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Conversione di Codifica:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "committed on %1$s by %2$s"
msgstr "Crea versione %1$s di %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %1$s of %2$s"
msgid "authored on %1$s by %2$s"
@@ -6967,18 +6972,17 @@ msgid "Display MIME types"
msgstr "Mostra tipi MIME"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Generato il"
@@ -7203,15 +7207,7 @@ msgstr "Nessun data trovato per la visualizzazione GIS."
msgid "GLOBALS overwrite attempt"
msgstr "Tentativo di sovrascrivere GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Risultato SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generato da"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)."
@@ -7312,7 +7308,7 @@ msgstr "Il numero dei campi non é valido nell'input CSV alla linea %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Nome tabella"
@@ -7670,7 +7666,7 @@ msgstr "Creazione di PDF"
msgid "Displaying Column Comments"
msgstr "Visualizzazione Commenti dei Campi"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Trasformazione del browser"
@@ -7774,10 +7770,10 @@ msgid "Variable"
msgstr "Variabile"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Valore"
@@ -7840,7 +7836,7 @@ msgstr "Genera Password"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7879,8 +7875,8 @@ msgid "Edit event"
msgstr "Modifica evento"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Errore nel processare la richiesta"
@@ -7930,7 +7926,7 @@ msgstr "Conserva dopo il completamento"
msgid "Definer"
msgstr "Definer"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Il definer deve essere nel seguente formato: \"nomeutente@nomehost\""
@@ -7988,7 +7984,7 @@ msgstr ""
"per evitare eventuali problemi."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Tipo di routine non valido: \"%s\""
@@ -8061,17 +8057,17 @@ msgstr "Tipo di sicurezza"
msgid "SQL data access"
msgstr "Tipo di accesso dati SQL"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "È necessario fornire il nome della routine"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Direzione invalida \"%s\" é stata fornita per un parametro."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8079,20 +8075,20 @@ msgstr ""
"È necessario fornire lunghezza o valori per parameteri della routine del "
"tipo ENUM, SET, VARCHAR e VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
"È necessario fornire un nome ed un tipo per ogni parametro della routine."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "È necessario fornire un valido tipo del risultato."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "È necessario fornire una definizione per la routine."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8103,22 +8099,22 @@ msgstr[1] ""
"%d righe influenzate dall'ultima istruzione eseguita all'interno della "
"procedura"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Risultato di esecuzione della routine %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Esegui routine"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Parametri della routine"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funzione"
@@ -8295,7 +8291,7 @@ msgstr "Tabella dei contenuti"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attributi"
@@ -8394,12 +8390,12 @@ msgid "Toggle scratchboard"
msgstr "(dis)attiva scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Lingua non conosciuta : %1$s."
@@ -8445,7 +8441,7 @@ msgstr "Eseguendo query SQL sul server %s"
msgid "Run SQL query/queries on database %s"
msgstr "Esegui la/e query SQL sul database %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Cancella"
@@ -8454,11 +8450,11 @@ msgstr "Cancella"
msgid "Columns"
msgstr "Campi"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Aggiungi ai preferiti questa query SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Permetti ad ogni utente di accedere a questo bookmark"
@@ -8560,12 +8556,12 @@ msgstr ""
"installato le estensioni php necessarie come descritto nella %sdocumentazione"
"%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Monitoraggio di %s é attivo."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8577,7 +8573,7 @@ msgstr ""
"(\"\\\") o una virgolette singola quote (\"'\") prefissa a questi caratteri "
"con un \"\\\" (per esempio '\\\\xyz' o 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8585,19 +8581,19 @@ msgstr ""
"Per i valori predefiniti, prego inserire un singolo valore, senza backslash "
"escaping o virgolette, utilizzando questo formato: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indice"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Rimuovi campo/i"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8606,11 +8602,11 @@ msgstr ""
"Per una lista di opzioni di trasformazione disponibili e le loro rispettive "
"trasformazioni di tipi-MIME, cliccate su %strasformazione descrizioni%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opzioni di transformazione"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8622,71 +8618,71 @@ msgstr ""
"backslash (\"\\\") o un apostrofo (\"'\") tra questi valori, essi vanno "
"backslashati (ad esempio '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Dati in ENUM o SET troppo lunghi?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Piú spazio per la modifica"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Nessuno"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Come definito:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primaria"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Testo completo"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "dopo %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Aggiungi %s campo/i"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Devi aggiungere almeno un campo."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Motore di Memorizzazione"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definizione PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operatore"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Ricerca nella Tabella"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Modifica/Inserisci"
@@ -8859,11 +8855,11 @@ msgstr ""
"permanante di questi richiede l'abilitazione della %smemorizzazione della "
"configurazione di phpMyAdmin%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Impossibile salvare la configurazione"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8875,8 +8871,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Non sono stati trovati file ZIP all'interno dell'archivio!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Errore nell'archivio ZIP:"
@@ -9057,16 +9053,22 @@ msgstr ""
msgid "No databases"
msgstr "Nessun database"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtra tabelle in base al nome"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtra tabelle in base al nome"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Crea tabella"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Prego, selezionare un database"
@@ -10227,7 +10229,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Questions eseguiti dall'avvio: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Istruzioni"
@@ -11505,14 +11507,14 @@ msgstr "Ignora errori"
msgid "Show form"
msgstr "Visualizza form"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Né URL wrapper, né CURL sono disponibili. Impossibile effettuare il "
"controllo della versione."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11520,15 +11522,15 @@ msgstr ""
"La lettura della versione é fallita. É possibile che sei offline o che il "
"server degli aggiornamenti non risponde."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Ricevuto una stringa di versione invalida dal server"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Stringa della versione non interpretabile"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11537,11 +11539,11 @@ msgstr ""
"Stai utilizzando una version GIT, esegui [kbd]git pull[/kbd] :-)[br]La "
"versione stabile piú recente é %s, bubblicata il %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Non é disponibile nessuna nuova versione stabile"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11555,7 +11557,7 @@ msgstr ""
"base di IP potrebbe non essere affidabile se il tuo IP appartiene ad un ISP "
"dove migliaia di utenti, incluso te, sono connessi."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11566,7 +11568,7 @@ msgstr ""
"automaticamente. E utilizzata per la codifica dei cookie; non hai bisogno di "
"ricordarla."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11575,7 +11577,7 @@ msgstr ""
"%sla compressione e decompressione Bzip2%s richiede le funzioni (%s) che non "
"sono disponibili sul tuo sistema."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11584,13 +11586,13 @@ msgstr ""
"non é scrivibile da tutti o leggibile o scrivibile da altri utenti sul tuo "
"server."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Quest'%sopzione%s dovrebbe essere abilitata se il tuo web server lo supporta."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11599,7 +11601,7 @@ msgstr ""
"%sla compressione e decompressione GZip%s richiedono le funzioni (%s) che "
"non sono disponibili sul tuo sistema."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11610,7 +11612,7 @@ msgstr ""
"invalidazioni delle sessioni se %ssession.gc_maxlifetime%s é inferiore al "
"suo valore (attualmente %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11620,7 +11622,7 @@ msgstr ""
"minuti) al massimo. I valori maggiogi di 1800 creano un rischio di "
"sicurezza, come impersonazione."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11630,7 +11632,7 @@ msgstr ""
"validitá del cookie%s deve essere impostata ad un valore inferiore o uguale "
"a questo."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11644,7 +11646,7 @@ msgstr ""
"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
"connessi."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11659,7 +11661,7 @@ msgstr ""
"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta "
"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11668,7 +11670,7 @@ msgstr ""
"%sLa compressione Zip%s richiede la funzioni (%s) che non sono disponibili "
"su questo sistema."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11677,23 +11679,23 @@ msgstr ""
"%sLa decompressione Zip%s richiede la funzioni (%s) che non sono disponibili "
"su questo sistema."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Usa una connessione SSL se il tuo server database la supporta."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Dovresti utilizzare mysqli per ragioni di prestazioni."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Consenti la connessione al server senza password."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "La chiave é troppo corta, deve essere almeno 8 caratteri."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"La chiave deve contenere lettere, numeri [em]e[/em] caratteri speciali."
@@ -11702,8 +11704,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Dati errati"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Naviga tra i valori esterni"
@@ -11733,21 +11735,29 @@ msgstr "Visualizzo la query SQL"
msgid "Validated SQL"
msgstr "SQL Validato"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Risultato SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generato da"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi con gli indici della tabella `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etichetta"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "La tabella %1$s è già stata modificata con successo"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11868,7 +11878,7 @@ msgstr "Valori per asse Y"
msgid "Table %s already exists!"
msgstr "La tabella %s esiste già!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "La tabella %1$s è stata creata."
@@ -12068,43 +12078,43 @@ msgstr "Rimuove partizionamento"
msgid "Check referential integrity:"
msgstr "Controlla l'integrità delle referenze:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Mostra le tabelle"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Spazio utilizzato"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Utilizzo"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effettivo"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistiche righe"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statico"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamico"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Lunghezza riga"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Dimensione riga"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Prossimo autoindex"
@@ -12394,28 +12404,28 @@ msgstr "Monitora le istruzioni di manipolazione dei dati:"
msgid "Create version"
msgstr "Crea versione"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Esegui \"query da esempio\" (carattere jolly: \"%\") per due campi differenti"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Ulteriori criteri di ricerca"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Usate questo campo per etichettare ogni punto"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Massimo numero di righe da visualizzare"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Esplora/Modifica i punti"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Come usare"
diff --git a/po/ja.po b/po/ja.po
index eec283b211..bcf4f985d5 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-13 09:01+0200\n"
-"Last-Translator: Yuichiro Takahashi \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:15+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: japanese \n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "すべて表示"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "ページ番号:"
@@ -39,30 +39,30 @@ msgstr ""
"のと思われます。"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "検索"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "検索"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "実行"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "データベースのコメント: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "テーブルのコメント"
@@ -124,14 +124,14 @@ msgstr "テーブルのコメント"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "カラム"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "カラム"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "データ型"
@@ -156,9 +156,9 @@ msgstr "データ型"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "NULL"
@@ -168,7 +168,7 @@ msgstr "NULL"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "デフォルト値"
@@ -177,18 +177,18 @@ msgstr "デフォルト値"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "リンク先"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "コメント"
@@ -199,11 +199,11 @@ msgstr "コメント"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "いいえ"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "はい"
msgid "View dump (schema) of database"
msgstr "データベースのダンプ (スキーマ) 表示"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "このデータベースにはテーブルがありません。"
@@ -322,8 +322,8 @@ msgstr "コピーしたデータベースに切り替える"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "リレーショナルスキーマを編集またはエクスポートする"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "リレーショナルスキーマを編集またはエクスポートす
msgid "Table"
msgstr "テーブル"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "行"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "サイズ"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "使用中"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "作成日時"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "最終更新"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "最終検査"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -480,13 +479,13 @@ msgstr "利用するテーブル"
msgid "SQL query on database %s :"
msgstr "データベース %s のSQL:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "クエリを実行する"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "アクセスは拒否されました"
@@ -519,8 +518,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "%1$s 件 (テーブル %2$s )"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "表示"
@@ -595,11 +594,11 @@ msgstr "ビュー %s を破棄しました"
msgid "Table %s has been dropped"
msgstr "テーブル %s を削除しました"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "SQL コマンドの追跡はアクティブです。"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "SQL コマンドの追跡は非アクティブです。"
@@ -611,7 +610,7 @@ msgid ""
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "ビュー"
@@ -656,7 +655,7 @@ msgstr "オーバーヘッドのあるテーブルを確認する"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -665,17 +664,18 @@ msgid "Export"
msgstr "エクスポート"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "印刷用画面"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "空にする"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -718,15 +718,14 @@ msgid "Tracked tables"
msgstr "SQL コマンドを追跡しているテーブル"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "データベース"
@@ -744,7 +743,7 @@ msgstr "更新日時"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "状態"
@@ -935,13 +934,13 @@ msgstr "表示中のブックマーク"
msgid "The bookmark has been deleted."
msgstr "ブックマークを削除しました。"
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "ファイルを読み込めませんでした"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -972,7 +971,7 @@ msgstr ""
"インポートプラグインが読み込めません。正しくインストールされているか確認して"
"ください!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "ブックマーク %s を作成しました"
@@ -998,8 +997,8 @@ msgstr ""
"ただし、最後に実行したときはまったくデータを解析できませんでした。通常、PHP "
"の時間制限を伸ばさない限りこのデータのインポートはできません。"
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1108,9 +1107,9 @@ msgid "Close"
msgstr "閉じる"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "編集"
@@ -1134,7 +1133,7 @@ msgstr "統計データ"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "合計"
@@ -1145,12 +1144,12 @@ msgid "Other"
msgstr "その他"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1232,13 +1231,13 @@ msgid "System swap"
msgstr "システムスワップ"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1296,27 +1295,27 @@ msgid "Connections"
msgstr "接続"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "バイト"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1356,9 +1355,9 @@ msgstr "少なくとも1つの系列を追加してください"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "なし"
@@ -1547,7 +1546,7 @@ msgstr "EXPLAIN の結果"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "時間"
@@ -1863,7 +1862,7 @@ msgstr "%d は不正な行番号です。"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1877,7 +1876,7 @@ msgstr "検索条件を隠す"
msgid "Show search criteria"
msgstr "検索条件を表示する"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "検索プロット"
@@ -1968,7 +1967,7 @@ msgstr ""
#: js/messages.php:348
msgid "Add an option for column "
-msgstr "カラムに対するオプションを追加する"
+msgstr "カラムに対するオプションを追加する "
#: js/messages.php:351
msgid "Press escape to cancel editing"
@@ -2050,7 +2049,7 @@ msgstr "パスワードを変更する"
msgid "More"
msgstr "その他"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2137,63 +2136,63 @@ msgid "December"
msgstr "12 月"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "1 月"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "2 月"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "3 月"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "4 月"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "5 月"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "6 月"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "7 月"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "8 月"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "9 月"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "10 月"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "11 月"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "12 月"
@@ -2231,32 +2230,32 @@ msgid "Sun"
msgstr "日"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "月"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "火"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "水"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "木"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "金"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "土"
@@ -2402,11 +2401,11 @@ msgstr ""
"設定ファイルのパーミッションが正しくありません。書き込み可能になっていませ"
"ん!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "フォントサイズ"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "エラーメッセージが多すぎます。いくつかは表示されません。"
@@ -2414,13 +2413,13 @@ msgstr "エラーメッセージが多すぎます。いくつかは表示され
msgid "File was not an uploaded file."
msgstr "アップロードされたファイルではありません。"
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"アップロードしたファイルは php.ini に指定されている設定項目 "
"upload_max_filesize の値を超えています。"
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2428,27 +2427,27 @@ msgstr ""
"アップロードしたファイルは HTML フォームに指定されている設定項目 "
"MAX_FILE_SIZE の値を超えています。"
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。"
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "一時フォルダが見つかりません。"
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "ファイルをディスクに書き込めません。"
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "拡張によりファイルのアップロードが中断されました。"
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "ファイルのアップロード中に予期しないエラーが発生しました。"
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2456,11 +2455,11 @@ msgstr ""
"アップロードされたファイルの移動に失敗しました。[a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a] をご覧ください。"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "アップロードされたファイルを移動中にエラーが発生しました。"
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "アップロードされ(移動し)たファイルが読み込めません。"
@@ -2474,7 +2473,7 @@ msgstr "インデックスが定義されていません!"
msgid "Indexes"
msgstr "インデックス"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2512,46 +2511,46 @@ msgstr ""
"インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし"
"れません。"
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "データベース"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "サーバ"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "構造"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "挿入"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "操作"
@@ -2630,25 +2629,25 @@ msgstr "プラグイン"
msgid "Engines"
msgstr "エンジン"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "エラー"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d 行変更しました。"
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d 行削除しました。"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2690,45 +2689,43 @@ msgstr "%s は無効になっています。"
msgid "This MySQL server does not support the %s storage engine."
msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません。"
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "不明なテーブルステータス: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
-#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "元にするデータベース `%s` が見つかりません!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
-#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "対象先のデータベース `%s` が見つかりません!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "不正なデータベースです"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "テーブル名が不正です"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "テーブル名を %1$s から %2$s に変更するときにエラーが発生しました"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "テーブル %1$s の名称を %2$s に変更しました。"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "テーブルに対する環境設定が保存できません"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2737,7 +2734,7 @@ msgstr ""
"テーブルに対する環境設定のクリーンアップに失敗しました (参照 $cfg['Servers']"
"[$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2747,16 +2744,16 @@ msgstr ""
"環境プロパティ「%s」が保存できません。ページ更新の際、変更箇所が維持されるこ"
"とはないでしょう。テーブル構造を変更されたのであれば確認してみてください。"
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "テーマ %s の画像パスが無効です!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "プレビューは利用できません。"
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "これにする"
@@ -2814,11 +2811,13 @@ msgstr ""
"8 バイト整数、符号付きは -9,223,372,036,854,775,808 から "
"9,223,372,036,854,775,807、符号なしは 0 から 18,446,744,073,709,551,615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
-msgstr "固定小数 (M, D) - 整数部の最大桁数 M は 65 (デフォルトは 10)、小数部のの最大桁数 D は 30 (デフォルトは 0)"
+msgstr ""
+"固定小数 (M, D) - 整数部の最大桁数 M は 65 (デフォルトは 10)、小数部のの最大"
+"桁数 D は 30 (デフォルトは 0)"
#: libraries/Types.class.php:301
msgid ""
@@ -2843,7 +2842,8 @@ msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
-"DOUBLE と同義 (例外:REAL を FLOAT として扱うモード (REAL_AS_FLOAT) では、FLOAT と 同義になります)"
+"DOUBLE と同義 (例外:REAL を FLOAT として扱うモード (REAL_AS_FLOAT) では、"
+"FLOAT と 同義になります)"
#: libraries/Types.class.php:307
msgid ""
@@ -2860,15 +2860,15 @@ msgstr "TINYINT(1) と同義、0 が FALSE と見なされ、0 以外が TRUE
#: libraries/Types.class.php:311
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-"BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE の別名 (BIGINT、符号なし、NULL "
-"なし、AUTO_INCREMENT、ユニークキー)"
+"BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE の別名 (BIGINT、符号なし、"
+"NULL なし、AUTO_INCREMENT、ユニークキー)"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "日付、有効範囲は %1$s から %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "日時 (日付と時刻)、有効範囲は %1$s から %2$s"
@@ -2881,7 +2881,7 @@ msgstr ""
"タイムスタンプ、範囲は 1970-01-01 00:00:01 UTC から 2038-01-09 03:14:07 UTC "
"で、1970-01-01 00:00:00 UTC からの経過秒数を示しています"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "時刻、範囲は %1$s から %2$s"
@@ -2891,8 +2891,8 @@ msgid ""
"A year in four-digit (4, default) or two-digit (2) format, the allowable "
"values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000"
msgstr ""
-"年、4 桁 (デフォルト) または 2 桁、有効な値は 2 桁が 70 (1970) から 69 (2069)、4 桁が 1901 から 2155 "
-"および 0000"
+"年、4 桁 (デフォルト) または 2 桁、有効な値は 2 桁が 70 (1970) から 69 "
+"(2069)、4 桁が 1901 から 2155 および 0000"
#: libraries/Types.class.php:323
msgid ""
@@ -2902,7 +2902,7 @@ msgstr ""
"固定長文字列 (長さは 0-255、デフォルトは 1)、満たない分は右側が空白で埋められ"
"ます"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2914,19 +2914,25 @@ msgstr ""
msgid ""
"A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with "
"a one-byte prefix indicating the length of the value in bytes"
-msgstr "TEXT カラム、最大長 255 (2^8 - 1)、これの長さは単位がバイトで、1 バイト値で表現できる範囲です"
+msgstr ""
+"TEXT カラム、最大長 255 (2^8 - 1)、これの長さは単位がバイトで、1 バイト値で表"
+"現できる範囲です"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
-msgstr "TEXT カラム、最大長 65,535 (2^16 - 1)、これの長さは単位がバイトで、2 バイト値で表現できる範囲です"
+msgstr ""
+"TEXT カラム、最大長 65,535 (2^16 - 1)、これの長さは単位がバイトで、2 バイト値"
+"で表現できる範囲です"
#: libraries/Types.class.php:331
msgid ""
"A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, "
"stored with a three-byte prefix indicating the length of the value in bytes"
-msgstr "TEXT カラム、最大長 16,777,215 (2^24 - 1)、これの長さは単位がバイトで、3 バイト値で表現できる範囲です"
+msgstr ""
+"TEXT カラム、最大長 16,777,215 (2^24 - 1)、これの長さは単位がバイトで、3 バイ"
+"ト値で表現できる範囲です"
#: libraries/Types.class.php:333
msgid ""
@@ -2934,51 +2940,63 @@ msgid ""
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
-"TEXT カラム、最大長 4,294,967,295 または 4GiB (2^32 - 1)、これの長さは単位がバイトで、4 "
-"バイト値で表現できる範囲です"
+"TEXT カラム、最大長 4,294,967,295 または 4GiB (2^32 - 1)、これの長さは単位が"
+"バイトで、4 バイト値で表現できる範囲です"
#: libraries/Types.class.php:335
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
-msgstr "CHAR 型と似ていますが、非バイナリ文字列ではなくバイナリ文字列で保存されます"
+msgstr ""
+"CHAR 型と似ていますが、非バイナリ文字列ではなくバイナリ文字列で保存されます"
#: libraries/Types.class.php:337
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
-msgstr "VARCHAR 型と似ていますが、非バイナリ文字列ではなくバイナリ文字列で保存されます"
+msgstr ""
+"VARCHAR 型と似ていますが、非バイナリ文字列ではなくバイナリ文字列で保存されま"
+"す"
#: libraries/Types.class.php:339
msgid ""
"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a "
"one-byte prefix indicating the length of the value"
-msgstr "BLOB カラム、最大 255 (2^8 - 1) バイト、これの長さは 1 バイト値で表現できる範囲です"
+msgstr ""
+"BLOB カラム、最大 255 (2^8 - 1) バイト、これの長さは 1 バイト値で表現できる範"
+"囲です"
#: libraries/Types.class.php:341
msgid ""
"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored "
"with a three-byte prefix indicating the length of the value"
-msgstr "BLOB カラム、最大 16,777,215 (2^24 - 1) バイト、これの長さは 3 バイト値で表現できる範囲です"
+msgstr ""
+"BLOB カラム、最大 16,777,215 (2^24 - 1) バイト、これの長さは 3 バイト値で表現"
+"できる範囲です"
#: libraries/Types.class.php:343
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a two-byte prefix indicating the length of the value"
-msgstr "BLOB カラム、最大 65,535 (2^16 - 1) バイト、これの長さは 2 バイト値で表現できる範囲です"
+msgstr ""
+"BLOB カラム、最大 65,535 (2^16 - 1) バイト、これの長さは 2 バイト値で表現でき"
+"る範囲です"
#: libraries/Types.class.php:345
msgid ""
"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"bytes, stored with a four-byte prefix indicating the length of the value"
msgstr ""
-"BLOB カラム、最大 4,294,967,295 バイトまたは 4GiB (2^32 - 1)、これの長さは 4 バイト値で表現できる範囲です"
+"BLOB カラム、最大 4,294,967,295 バイトまたは 4GiB (2^32 - 1)、これの長さは 4 "
+"バイト値で表現できる範囲です"
#: libraries/Types.class.php:347
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
-msgstr "列挙型、最大 65,535 個の列挙値または特殊な値 (エラー値 '') を取ることができます"
+msgstr ""
+"列挙型、最大 65,535 個の列挙値または特殊な値 (エラー値 '') を取ることができま"
+"す"
#: libraries/Types.class.php:349
msgid "A single value chosen from a set of up to 64 members"
@@ -3016,34 +3034,31 @@ msgstr "ポリゴンの集合"
msgid "A collection of geometry objects of any type"
msgstr "任意の型の幾何物体の集合"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "数値"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Create an index"
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "日付・時刻"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "文字列"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "空間データ"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "4 バイト整数、範囲は -2,147,483,648 から 2,147,483,647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3051,45 +3066,45 @@ msgstr ""
"8 バイト整数、範囲は -9,223,372,036,854,775,808 から "
"9,223,372,036,854,775,807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr "システムでデフォルトの倍精度浮動小数"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "TRUE または FALSE"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-"BIGINT NOT NULL AUTO_INCREMENT UNIQUE の別名 (BIGINT、NULL "
-"なし、AUTO_INCREMENT、ユニークキー)"
+"BIGINT NOT NULL AUTO_INCREMENT UNIQUE の別名 (BIGINT、NULL なし、"
+"AUTO_INCREMENT、ユニークキー)"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "汎用一意識別子 (UUID) 保存用"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-"タイムスタンプ、範囲は 0001-01-01 00:00:00 UTC から 9999-12-31 23:59:59、TIMESTAMP(6) "
-"でマイクロ秒まで保存できるようになります"
+"タイムスタンプ、範囲は 0001-01-01 00:00:00 UTC から 9999-12-31 23:59:59、"
+"TIMESTAMP(6) でマイクロ秒まで保存できるようになります"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr "可変長文字列 (長さは 0-65,535)、文字列の比較はバイナリで行われます"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "列挙型、定義しておいた列挙リストより値を取ることができます"
@@ -3161,21 +3176,21 @@ msgstr "サーバの選択"
msgid "Cookies must be enabled past this point."
msgstr "クッキーを有効にしてください。"
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"パスワードなしログインは設定 (AllowNoPassword 参照) によって禁止されています"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s 秒以上操作をしませんでした。ログインし直してください。"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL サーバにログインできません"
@@ -3220,18 +3235,18 @@ msgstr "テーブル"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "データ"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "オーバーヘッド"
@@ -3338,8 +3353,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "実行した SQL"
@@ -3349,144 +3364,144 @@ msgstr "実行した SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL のメッセージ: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "SQL 検証への接続に失敗しました!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "EXPLAIN で確認"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL の EXPLAIN 解析をスキップ"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP コードを省略"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP コードの作成"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "再描画"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL の検証をスキップ"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL の検証"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "このクエリをインラインで編集します"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "インライン"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "プロファイリング"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %B %d 日 %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 日 %s 時間 %s 分 %s 秒"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "パラメータがありません:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "先頭"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "前へ"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "次へ"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "最後"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "データベース「%s」に移動します。"
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s の機能には既知のバグがあります。%s をご覧ください"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "クリックでオン/オフ切り替え"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "アップロードファイル:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "指定したアップロードディレクトリが利用できません"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "アップロードファイルがありません"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "実行"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "印刷"
@@ -3570,68 +3585,68 @@ msgstr "上の両方を行う"
msgid "neither of the above"
msgstr "上のどちらでもない"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "正の値ではありません"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "負の値ではありません"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "有効なポート番号ではありません"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "不正な値です"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "値は %s 以下でなければいけません"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "%s ためのデータがありません"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "使えません"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" には %s 拡張が必要です"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "インポートが行えません。関数 %s がありません。"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "エクスポートが行えません。関数 %s がありません。"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL 検証は無効です"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP 拡張が見つかりません"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "最大 %s"
@@ -3650,7 +3665,7 @@ msgid "Set value: %s"
msgstr "値「%s」を設定"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "デフォルト値に戻す"
@@ -3948,7 +3963,7 @@ msgid "Character set of the file"
msgstr "ファイルの文字セット"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "フォーマット"
@@ -4047,7 +4062,7 @@ msgstr "ラベルキー"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME タイプ"
@@ -4172,8 +4187,8 @@ msgstr "デフォルトオプションの詳細設定"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4605,53 +4620,59 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "テーブルフィルタボックスを表示する最小のテーブル数"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "テーブルフィルタボックスを表示する最小のテーブル数"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "ツリーレベルにデータベースを区切るための文字列"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "データベースツリーの区切り"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
"軽快モードのみ。下の項目で定義する区切りが合った場合、ツリー表示になります。"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "データベースをツリー形式で表示する"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "全てのデータベースを同時に閲覧したい場合は、これを無効にします。"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "軽快モードを使用する"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "テーブルツリーの最大の深さ"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "ツリーレベルにテーブルを区切るための文字列"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "テーブルツリーの区切り"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "ナビゲーションフレームのロゴが指す URL"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "ロゴのリンク URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4659,36 +4680,36 @@ msgstr ""
"メインウィンドウ ([kbd]main[/kbd]) もしくは新しいウィンドウ ([kbd]new[/kbd]) "
"にリンクされたページを開きます。"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "ロゴリンクのターゲット"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "マウスカーソルの下のサーバ名を強調表示します。"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "強調表示を有効にする"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "最近使用したテーブルの最大数。0 で無効になります。"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "最近使用したテーブル"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "表示ページにおいて数値でないカラムの表示文字の最大数"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "カラムの文字制限"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4699,11 +4720,11 @@ msgstr ""
"を外すと、複数のサーバに接続している時、他のサーバからのログアウト作業を忘れ"
"やすくなります。"
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "ログアウト時にすべてのクッキーを削除する"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4711,11 +4732,11 @@ msgstr ""
"cookie 認証モードの場合に、前回ログインしたときの状態に戻すかどうかを定義しま"
"す。"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "ログインしたときの状態に戻す"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4727,48 +4748,48 @@ msgstr ""
"のウィンドウが閉じられるとすぐに削除されます。これは、信頼されていない環境で"
"使う場合に推奨します。"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "ログインクッキーの保存期間"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "ログインクッキーの有効期間 (秒数) を定義します。"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "ログインクッキーの有効期間"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "LONGTEXT カラムに対して textarea を 2 倍にします。"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEXT に対しては大きな textarea を使う"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "SQL クエリが表示されているときに使用される文字の最大数"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "表示できる SQL 文の最大の長さ"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "ユーザはこれより高い値を設定することはできません"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "左のフレームとデータベースリストに表示されるデータベースの最大数"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "データベースの最大数"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4777,19 +4798,19 @@ msgstr ""
"結果セットの表示行数。結果セットの行数の方が多い場合は「前へ/次へ」のリンク"
"が表示されます。"
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "行の最大表示数"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "テーブルのリストに表示されるテーブルの最大数"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "テーブルの最大数"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4797,11 +4818,11 @@ msgstr ""
"cookie 認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れると"
"このメッセージは表示されません。"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt 警告"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4809,43 +4830,43 @@ msgstr ""
"割り当てが許可されているスクリプトのバイト数。例:[kbd]32M[/kbd] ([kbd]0[/"
"kbd] で制限無し)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "メモリ制限"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "編集、コピー、削除のリンクことです。"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "テーブルの行リンクを表示する場所"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "テーブルやデータベースの名前のソートを人間が行うような手法で行います。"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "自然順"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "「アイコンのみ」、「テキストのみ」、「両方」のいずれかが使えます。"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "ナビゲーションバーのアイコン"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "HTTP 転送の高速化のために GZip の出力バッファリングを使用します。"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip の出力バッファリング"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4853,19 +4874,19 @@ msgstr ""
"[kbd]SMART[/kbd] とは TIME、DATE、DATETIME、TIMESTAMP 型のカラムに対しては "
"DESC、それ以外は ASC の並び順にします。"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "デフォルトの並び順"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "MySQL データベースへの永続的な接続を使用します。"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "永続的な接続"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4874,23 +4895,23 @@ msgstr ""
"phpMyAdmin 環境保管領域に必要なテーブルを見つけることができなかった場合、デー"
"タベースの構造詳細ページに表示されるデフォルトの警告を無効にします。"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin 環境保管領域用のテーブルが不明"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "アイコンによるテーブルの操作"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "BLOB および BINARY カラムへの編集を禁止します。"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "バイナリカラムの保護"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4900,112 +4921,112 @@ msgstr ""
"環境保管領域の設定が必要です)。無効にした場合、クエリ履歴の表示に JavaScript "
"を利用します (ウィンドウを閉じると履歴は消えます)。"
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "永続的なクエリの履歴"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "履歴に残るクエリの件数"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "クエリ履歴の長さ"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "新しいクエリウィンドウを開いたときに開いておくタブ"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "クエリウィンドウのデフォルトタブ"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "クエリウィンドウの高さ (ピクセル数)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "クエリウィンドウの高さ"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "クエリウィンドウの幅 (ピクセル数)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "クエリウィンドウの幅"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "文字セットの変換に使用される関数を選択します。"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "コード変換エンジン"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "表示している各テーブルのソートが記憶されます。"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "テーブルのソートを記憶する"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"カラム名を何行おきに挿入するか。[kbd]0[/kbd] でこの機能は無効になります。"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "カラム名の差し込み間隔"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "編集したセルを一度にすべて保存する"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "エクスポートをサーバ上に保存できるディレクトリ"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "保存ディレクトリ"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "使用しない場合は空欄にします。"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "ホストの認証順番"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "デフォルトにする場合は空欄にします。"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "ホスト認証のルール"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "パスワードなしログインの許可"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "root ログインの許可"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP 認証を行うときに表示される HTTP Basic 認証領域における名称"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP 領域"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5014,19 +5035,19 @@ msgstr ""
"[a@http://swekey.com]SweKey ハードウェア認証[/a]用の設定ファイルのパス (ド"
"キュメントルートには配置しないこと。/etc/swekey.conf がいいでしょう。)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey 設定ファイル"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "使用する認証方法"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "認証タイプ"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5034,11 +5055,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]ブックマーク[/a]機能を使わない場合"
"は空欄にします。[kbd]pma_bookmark[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "ブックマークテーブル"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5046,32 +5067,32 @@ msgstr ""
"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。[kbd]"
"pma_column_info[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "カラム情報テーブル"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "MySQL サーバと圧縮プロトコルで接続します。"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "圧縮通信を行う"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"サーバへの接続方法。確信がなければ [kbd]tcp[/kbd] のままにしてください。"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "接続方法"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "phpMyAdmin ユーザのパスワード"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5079,11 +5100,11 @@ msgstr ""
"権限を制限して設定しておいた特別な MySQL ユーザを使います。詳細は [a@http://"
"wiki.phpmyadmin.net/pma/controluser]wiki[/a] を参照してください。"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "phpMyAdmin ユーザ"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5091,19 +5112,19 @@ msgstr ""
"環境保管領域に対しての代替ホスト。空欄で既に定義されているホストを使用しま"
"す。"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "環境保管領域ホスト"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "データベースリストを表示するときにテーブル数も表示するかどうか。"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "テーブル数"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5111,11 +5132,11 @@ msgstr ""
"デザイナを使わない場合は空欄にします。[kbd]pma_designer_coords[/kbd] としてお"
"くのがいいでしょう。"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "デザイナテーブル"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5123,27 +5144,27 @@ msgstr ""
"詳細は [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] "
"と [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]。"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA の使用を無効にする"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "mysqli がサポートされているなら、そちらを使うべきでしょう。"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "使用する PHP 拡張"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "正規表現 (PCRE) で一致するデータベースを非表示にします"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "非表示にするデータベース"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5151,23 +5172,23 @@ msgstr ""
"SQL クエリの履歴機能を使わない場合は空欄にします。[kbd]pma_history[/kbd] とし"
"ておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL クエリ履歴テーブル"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "稼働している MySQL サーバのホスト名"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "サーバのホスト名"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "ログアウト URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5175,19 +5196,19 @@ msgstr ""
"データベースに保管されるテーブル環境設定の上限。古いものから自動的に削除され"
"ます。"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "テーブル環境設定の最大保管数"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "パスワードなしでの接続を試みます。"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "パスワードなしで接続する"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5202,30 +5223,30 @@ msgstr ""
"力していき、最後に [kbd]'*'[/kbd] とだけ入力しておきます。[kbd]'*'[/kbd] は"
"残ったものをアルファベット順に並べて表示する働きをします。"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "リスト化したデータベースだけを表示する"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "config 認証を使用しない場合は空欄のままにします。"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "config 認証用のパスワード"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と"
"しておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF スキーマ:ページテーブル"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5236,20 +5257,20 @@ msgstr ""
"れらの機能を使わない場合は空欄にします。[kbd]phpmyadmin[/kbd] としておくのが"
"いいでしょう。"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "データベース名"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"MySQL サーバで開いているポート。デフォルトにしたい場合は空欄のままにします。"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "サーバのポート"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5257,11 +5278,11 @@ msgstr ""
"最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし"
"ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "最近使用したテーブル"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5269,19 +5290,19 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな"
"い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "リレーションテーブル"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "使用可能なデータベースを取得するための SQL コマンド"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES コマンド"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5289,44 +5310,44 @@ msgstr ""
"設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を"
"参照してください。"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "サインオンセッション名"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "サインオン URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"MySQL サーバで開いているソケット。デフォルトにしたい場合は空欄のままにしま"
"す。"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "サーバのソケット"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "MySQL サーバへの接続において SSL を有効にします。"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL を使用する"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし"
"ておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF スキーマ:テーブルの座標"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5334,11 +5355,11 @@ msgstr ""
"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。[kbd]"
"pma_table_info[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "表示するカラムためのテーブル"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5346,11 +5367,11 @@ msgstr ""
"テーブルに対する環境設定をセッションを跨いで「永続的に」記憶しない場合は空欄"
"にします。[kbd]pma_table_uiprefs[/kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "テーブルに対する環境設定を保管するテーブル"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5358,11 +5379,11 @@ msgstr ""
"データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS 文を追加"
"するかどうか。"
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE を追加する"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5370,11 +5391,11 @@ msgstr ""
"テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS 文を追加するか"
"どうか。"
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "DROP TABLE を追加する"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5382,19 +5403,19 @@ msgstr ""
"ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS 文を追加するかどう"
"か。"
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "DROP VIEW を追加する"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "新しい世代に対して自動生成使用するコマンドのリストを定義します。"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "追跡するコマンド"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5402,11 +5423,11 @@ msgstr ""
"SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] "
"としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL コマンド追跡テーブル"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5414,11 +5435,11 @@ msgstr ""
"SQL コマンドの追跡機能が、テーブルやビューに対して自動的に世代を作成するかど"
"うか。"
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "世代の自動作成"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5426,15 +5447,15 @@ msgstr ""
"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/"
"kbd] としておくのがいいでしょう。"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "ユーザ環境保管テーブル"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "config 認証用のユーザ"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5442,19 +5463,19 @@ msgstr ""
"このサーバのわかりやすい説明。ホスト名をそのまま表示させる場合には、空欄のま"
"まにします。"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "このサーバの詳細な名前"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "「(行を) すべて表示」ボタンを表示するかどうか。"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "すべての行の表示を許可する"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5464,41 +5485,41 @@ msgstr ""
"ください。なぜならパスワードが設定ファイルに直接書き込まれているからです。こ"
"れは同じコマンドを直接実行する機能を制限するものではありません。"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "パスワード変更フォームを表示する"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "「データベースを作成する」の部分を表示する"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr "テーブル一覧において作成日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "作成日時を表示する"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr "テーブル一覧において最終更新日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "最終更新日時を表示する"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr "テーブル一覧において最終検査日時の列を表示させるかどうか"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "最終検査日時を表示する"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5506,37 +5527,37 @@ msgstr ""
"テーブルを閲覧するときに、表示方向のオプションが表示されるかどうかを定義しま"
"す。"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "表示方向を表示する"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr "編集/挿入モードでデータ型項目を表示するかどうか定義します。"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "データ型項目を表示する"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "編集/挿入モードで関数項目を表示します。"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "関数項目を表示する"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "操作ヒントを表示するかどうか。"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "操作ヒントを表示する"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5544,41 +5565,41 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] の結果へのリンク"
"を表示します"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "phpinfo() リンクを表示する"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "詳細な MySQL サーバ情報を表示する"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"phpMyAdmin によって生成される SQL クエリを表示するかどうかを定義します。"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "SQL クエリを表示する"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "送信後もクエリボックスを画面上に残しておくかどうかを定義します。"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "クエリボックスを保持する"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "データベースやテーブルの状態(領域の使用状況など)の表示を許可します。"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "統計を表示する"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5586,11 +5607,11 @@ msgstr ""
"ツールチップが有効でデータベースのコメントが設定されている場合、名前とコメン"
"トを入れ替えて表示する形なります。"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "データベースの名前の代わりにコメントを表示する"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5602,30 +5623,30 @@ msgstr ""
"されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル名自体"
"はそのまま変わることありません。"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "テーブルの名前の代わりにコメントを表示する"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "ツールチップにテーブルのコメントを表示する"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"使われているテーブルには印をして、テーブルがロックされていても可能であれば"
"データベースを閲覧します。"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "ロックされているテーブルをスキップする"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "SQL 検証を有効にするには必要です。"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5635,7 +5656,7 @@ msgstr "SQL 検証を有効にするには必要です。"
msgid "Password"
msgstr "パスワード"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5643,11 +5664,11 @@ msgstr ""
"[strong]注意:[/strong] PHP SOAP 拡張か PEAR SOAP がインストールされている必"
"要があります。"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "SQL 検証を有効にする"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5655,22 +5676,22 @@ msgstr ""
"ユーザ名を所持している場合は、ここに記述します(デフォルトは [kbd]anonymous[/"
"kbd])。"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "ユーザ名"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Suhosin が検出された場合、警告をメインページに表示します。チェックを入れると"
"このメッセージは表示されません。"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin 警告"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5678,11 +5699,11 @@ msgstr ""
"編集モードでの textarea の 1 行の文字数。SQL クエリ用のでは 2 倍、クエリウィ"
"ンドウに対しては 1.25 倍になります。"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "textarea の 1 行の文字数"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5690,31 +5711,31 @@ msgstr ""
"編集モードでの textarea の行数。SQL クエリ用のでは 2 倍、クエリウィンドウに対"
"しては 1.25 倍になります。"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "textarea の行数"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "データベース選択時のブラウザのウィンドウタイトル"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "何も選択していないときのブラウザのウィンドウタイトル"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "デフォルトタイトル"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "サーバ選択時のブラウザのウィンドウタイトル"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "テーブル選択時のブラウザのウィンドウタイトル"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5726,27 +5747,27 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) ヘッダを信頼するように指定することにな"
"ります。[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "信頼されたプロキシのリスト(IP アドレスの許可/拒否)"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "インポート用ファイルをアップロードできるサーバ上のディレクトリ"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "アップロードディレクトリ"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "全てのデータベース内を検索することを許可します。"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "データベース検索を使用する"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5754,27 +5775,27 @@ msgstr ""
"無効にすると、右端のチェックボックスに関係なく、ユーザが以下のオプションを設"
"定することはできません。"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "設定に開発者向けタブを追加する"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "バージョンアップの確認"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "phpMyAdmin のメインページ上で最終バージョンチェックを有効にします。"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "バージョンの確認"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5783,7 +5804,7 @@ msgstr ""
"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC"
"%E3%83%9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5804,82 +5825,82 @@ msgid "Signon authentication"
msgstr "サインオン認証"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA 文を使用した CSV の読み込み"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document スプレッドシート"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "簡易"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "詳細"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "データベースエクスポートオプション"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel 用の CSV"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document テキスト"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Drizzle 接続ライブラリが初期化できません"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Drizzle サーバに接続できませんでした"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "MySQL サーバに接続できませんでした"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "config 認証方法を使いましたが、ユーザ名が空欄です。"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "signon 認証方法を使いましたが、サインオンセッション名が空欄です。"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "signon 認証方法を使いましたが、サインオン URL が空欄です。"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "pmadb を使いましたが、phpMyAdmin ユーザが空欄です。"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "pmadb を使いましたが、phpMyAdmin ユーザのパスワードが空欄です。"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "不正な IP アドレス:%s"
@@ -5899,7 +5920,7 @@ msgstr "%s 拡張がありません。PHP の設定をチェックしてみて
msgid "possible deep recursion attack"
msgstr "深い再帰的な攻撃を受けている可能性があります"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5907,16 +5928,16 @@ msgstr ""
"サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま"
"せん)。"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "サーバが応答しません。"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
"データベースを含んでいるディレクトリのパーミッションを確認してください。"
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "詳細..."
@@ -5979,7 +6000,7 @@ msgstr "テーブルを作成"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "名前"
@@ -6139,25 +6160,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "エンコーディングへの変換:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s (%2$s ブランチ)"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "ブランチ無し"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Git のリビジョン"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "最終コミット: %1$s、%2$s により"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "パッチ作成: %1$s、%2$s により"
@@ -6873,18 +6894,17 @@ msgid "Display MIME types"
msgstr "MIME タイプを表示する"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "ホスト"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "生成日時"
@@ -7097,15 +7117,7 @@ msgstr "視覚化できる空間情報がありません。"
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS 変数が書き換えられている可能性があります"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL の結果"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "生成環境"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "返り値が空でした (行数 0)。"
@@ -7206,7 +7218,7 @@ msgstr "CSV 入力のカラム数が不正です (行: %d)。"
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "テーブル名"
@@ -7562,7 +7574,7 @@ msgstr "PDF の作成"
msgid "Displaying Column Comments"
msgstr "カラムコメント表示機能"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "ブラウザ変換機能"
@@ -7663,10 +7675,10 @@ msgid "Variable"
msgstr "変数"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "値"
@@ -7729,7 +7741,7 @@ msgstr "パスワードを生成する"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7765,8 +7777,8 @@ msgid "Edit event"
msgstr "イベントを編集する"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "要求処理中でのエラー"
@@ -7816,7 +7828,7 @@ msgstr "完了後もイベントを残す"
msgid "Definer"
msgstr "定義者"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "定義者の指定は「ユーザ名@ホスト名」の形式でなければなりません。"
@@ -7874,7 +7886,7 @@ msgstr ""
"「mysqli」拡張を使用するようにしてください。"
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "ルーチンタイプが不正です: \"%s\""
@@ -7945,17 +7957,17 @@ msgstr "SQL SECURITY"
msgid "SQL data access"
msgstr "データ干渉方式"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "ルーチン名は必須です"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "パラメータに対して不正な入出力「%s」が与えられています。"
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -7963,40 +7975,40 @@ msgstr ""
"ルーチンパラメータが ENUM、SET、VARCHAR、VARBINARY の場合、長さ/値は必須で"
"す。"
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "ルーチンの各パラメータに対して、名前とデータ型は必須です。"
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "ルーチンに対して、有効な返り値の種類を指定してください。"
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "ルーチンの定義は必須です。"
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "プロシージャ内の最後のステートメントは %d 行の変更を行いました"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "ルーチン %s の実行結果"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "ルーチンを実行する"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "ルーチンのパラメータ"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "関数"
@@ -8171,7 +8183,7 @@ msgstr "テーブルの内容"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "属性"
@@ -8270,12 +8282,12 @@ msgid "Toggle scratchboard"
msgstr "スクラッチボードを切り替える"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "言語ファイルが登録されていません: %1$s。"
@@ -8321,7 +8333,7 @@ msgstr "サーバ %s 上でクエリを実行する"
msgid "Run SQL query/queries on database %s"
msgstr "データベース %s 上でクエリを実行する"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "クリア"
@@ -8330,11 +8342,11 @@ msgstr "クリア"
msgid "Columns"
msgstr "カラム"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "この SQL をブックマークする"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "すべてのユーザがこのブックマークを利用できるようにする"
@@ -8433,12 +8445,12 @@ msgstr ""
"SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡"
"張がインストールされているか確認してください。"
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "%s の SQL コマンド追跡機能はアクティブです。"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8449,7 +8461,7 @@ msgstr ""
"バックスラッシュ (\"\\\") やシングルクォート (\"'\") を含める必要がある場合"
"は (\\\\xyz や a\\'b のように) その前にバックスラッシュを付けてください。"
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8457,17 +8469,17 @@ msgstr ""
"デフォルト値にはひとつの値のみ入力してください。バックスラッシュによるエス"
"ケープや引用符を含めることはできません。例: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "インデックス"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "カラムを移動させる"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8476,11 +8488,11 @@ msgstr ""
"利用可能な変換オプションや MIME タイプの変換の一覧については %s変換機能の説"
"明%s をご覧ください"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "変換オプション"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8491,71 +8503,71 @@ msgstr ""
"ングルクォート (\"'\") を値に含める必要がある場合は ( \\\\xyz や a\\'b のよう"
"に) バックスラッシュでエスケープしてください。"
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM もしくは SET データが長いので、"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "広い編集領域で作業する"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "なし"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "ユーザ定義:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "主"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "全文"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "最初へ"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "%s の後へ"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "%s 個のカラムを追加する"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "最低ひとつはカラムを追加してください。"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "ストレージエンジン"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "パーティションの定義"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "演算子"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "テーブル検索"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "編集/挿入"
@@ -8719,11 +8731,11 @@ msgstr ""
"環境設定は、現在のセッションでのみ有効です。この設定を永続的に有効にするに"
"は、%sphpMyAdmin 環境保管領域%sが必要です。"
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "設定が保存できません"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8736,8 +8748,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP アーカイブにファイルが含まれていません!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ZIP アーカイブにエラーがあります:"
@@ -8914,16 +8926,22 @@ msgstr ""
msgid "No databases"
msgstr "データベースが存在しません"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "名前でテーブルをフィルタする"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "名前でテーブルをフィルタする"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "テーブルを作成する"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "データベースを選択してください"
@@ -10070,7 +10088,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "起動以後の問い合わせ数:%s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "ステートメント"
@@ -11294,13 +11312,13 @@ msgstr "エラーを無視する"
msgid "Show form"
msgstr "フォームを表示する"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"URL ラッパ、cURL、いずれも利用できません。バージョンチェックが行えません。"
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11308,15 +11326,15 @@ msgstr ""
"バージョンの読み込みに失敗しました。オフラインであるか、アップグレードサーバ"
"が応答しません。"
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "サーバから取得したバージョン文字列は無効なものです"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "解析できないバージョン文字列です"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11325,11 +11343,11 @@ msgstr ""
"Git 版を使用されていますので、[kbd]git pull[/kbd] で更新を行ってください。"
"(^^)[br]最新の安定バージョンは %s で、%s にリリースされています。"
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "入手可能な新しい安定バージョンはありません"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11343,7 +11361,7 @@ msgstr ""
"ながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続され"
"ている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11354,7 +11372,7 @@ msgstr ""
"使用されるもので、外部に知られないようにしておく必要はありますが、管理者がそ"
"れを覚えておく必要はありません。"
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11363,7 +11381,7 @@ msgstr ""
"%sBzip2の圧縮と解凍%sには関数 (%s) が必要です。それらがこのシステムでは使用で"
"きません。"
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11371,13 +11389,13 @@ msgstr ""
"このディレクトリが、他のユーザにより外部からアクセスも読み書きできてしまうこ"
"とを防ぐために、この値は二重にチェックするべきです。"
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"ウェブサーバでサポートしている場合、この%sオプション%sを有効にするべきです。"
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11386,7 +11404,7 @@ msgstr ""
"%sGZipの圧縮と解凍%sには関数 (%s) が必要です。それらがこのシステムでは使用で"
"きません。"
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11397,7 +11415,7 @@ msgstr ""
"gc_maxlifetime%s がその値 (現在 %d) より低い場合、セッションがランダムに無効"
"化される原因となります。"
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11407,7 +11425,7 @@ msgstr ""
"す。1800 より大きい値は、偽装などのセキュリティリスクを引き起こす可能性があり"
"ます。"
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11417,7 +11435,7 @@ msgstr ""
"場合、%sログインクッキーの有効期間%sは保存期間の値以下に設定する必要がありま"
"す。"
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11431,7 +11449,7 @@ msgstr ""
"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま"
"せん。"
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11446,38 +11464,38 @@ msgstr ""
"ある phpMyAdmin に直接アクセスできてしまいます。ですから、%s認証タイプ%sを "
"[kbd]cookie[/kbd] か [kbd]http[/kbd] に設定してください。"
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip 圧縮%sには関数 (%s) が必要ですが、このシステムで使用できません。"
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip 解凍%sには関数 (%s) が必要ですが、このシステムで使用できません。"
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"データベースサーバがサポートしているならば、SSL 接続を使用するべきです。"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "パフォーマンス上の理由から mysqli の使用する必要があります。"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "パスワード無しでサーバへの接続が許されています。"
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "キーが短すぎます。少なくとも 8 文字は必要です。"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要があります。"
@@ -11485,8 +11503,8 @@ msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要
msgid "Wrong data"
msgstr "データが正しくありません"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "参照されている値を表示する"
@@ -11516,21 +11534,29 @@ msgstr "SQL クエリを表示"
msgid "Validated SQL"
msgstr "検証した SQL 文"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL の結果"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "生成環境"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "テーブル `%s` のインデックスに問題があります"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "ラベル"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "テーブル %1$s を変更しました"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11650,7 +11676,7 @@ msgstr "Y 軸の値"
msgid "Table %s already exists!"
msgstr "テーブル %s は既に存在します!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "テーブル %1$s を作成しました。"
@@ -11851,43 +11877,43 @@ msgstr "パーティションを削除"
msgid "Check referential integrity:"
msgstr "参照整合性の確認:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "テーブルを表示しています"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "ディスク使用量"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "使用量"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "有効"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "行の統計"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "静的"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "動的"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "行の長さ"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "行のサイズ"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "次の自動付番"
@@ -12180,27 +12206,27 @@ msgstr "追跡するデータ操作コマンド:"
msgid "Create version"
msgstr "世代を作成する"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "異なる 2 つのカラムによる定型問い合わせ (ワイルドカード: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "更なる検索条件"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "各点のラベルとして使われるカラム"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "プロットする結果の最大数"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "結果表示/プロット点の編集"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "使い方"
diff --git a/po/ka.po b/po/ka.po
index 274fb331c3..cb531c24eb 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-29 16:53+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:15+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: georgian \n"
"Language: ka\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "ყველაფრის ჩვენება"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "გვერდის ნომერი:"
@@ -36,30 +36,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "ძებნა"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -69,7 +69,7 @@ msgstr "ძებნა"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "გადასვლა"
@@ -109,8 +109,8 @@ msgid "Database comment: "
msgstr "კომენტარი მონაცემთა ბაზაში: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "ცხრილის კომენტარები"
@@ -121,14 +121,14 @@ msgstr "ცხრილის კომენტარები"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "სვეტები"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -136,12 +136,12 @@ msgstr "სვეტები"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "ტიპი"
@@ -153,9 +153,9 @@ msgstr "ტიპი"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -165,7 +165,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "სტანდარტული"
@@ -174,18 +174,18 @@ msgstr "სტანდარტული"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Links to"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "კომენტარები"
@@ -196,11 +196,11 @@ msgstr "კომენტარები"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,12 +218,12 @@ msgstr "არა"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -233,8 +233,8 @@ msgstr "დიახ"
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr ""
@@ -322,8 +322,8 @@ msgstr ""
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -341,8 +341,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr ""
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -352,45 +352,44 @@ msgstr ""
msgid "Table"
msgstr "ცხრილი"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "სტრიქონები"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "ზომა"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "in use"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "შეიქმნა"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "უკანასკნელი განახლება"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Last check"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -480,13 +479,13 @@ msgstr "გამოიყენე ცხრილები"
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "მოთხოვნის გაგზავნა"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "მიუწვდომელია"
@@ -521,8 +520,8 @@ msgstr[0] "%s match(es) inside table %s "
msgstr[1] "%s match(es) inside table %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "არჩევა"
@@ -605,11 +604,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -621,7 +620,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "ხედო"
@@ -666,7 +665,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -675,17 +674,18 @@ msgid "Export"
msgstr "ექსპორტი"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "ხედის ამობეჭდვა"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "ცარიელი"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -732,15 +732,14 @@ msgid "Tracked tables"
msgstr "ნანახი ცხრილები"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "მონაცემთა ბაზა"
@@ -759,7 +758,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "სტატუსი"
@@ -949,13 +948,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "ფაილის წაკითხვა ვერ მოხერხდა"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -978,7 +977,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1000,8 +999,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1126,9 +1125,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "რედაქტირება"
@@ -1152,7 +1151,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "სულ"
@@ -1163,12 +1162,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1261,13 +1260,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1335,27 +1334,27 @@ msgid "Connections"
msgstr "კავშირები"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1403,9 +1402,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "არაა"
@@ -1596,7 +1595,7 @@ msgstr "SQL-ის ახსნა"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "დრო"
@@ -1974,7 +1973,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1992,7 +1991,7 @@ msgstr "SQL Query box"
msgid "Show search criteria"
msgstr "SQL Query box"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2179,7 +2178,7 @@ msgstr "პაროლის შეცვლა"
msgid "More"
msgstr "ორშ"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2289,27 +2288,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "იან"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "თებ"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "მარ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "აპრ"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2317,37 +2316,37 @@ msgid "May"
msgstr "მაი"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "ივნ"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "ივლ"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "აგვ"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "სექ"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "ოქტ"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "ნოე"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "დეკ"
@@ -2396,32 +2395,32 @@ msgid "Sun"
msgstr "კვი"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "ორშ"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "სამ"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "ოთხ"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "ხუთ"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "პარ"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "შაბ"
@@ -2583,11 +2582,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "შრიფტის ზომა"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2595,47 +2594,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2649,7 +2648,7 @@ msgstr "ინდექსი არაა განსაზღვრული!
msgid "Indexes"
msgstr "ინდექსები"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2685,46 +2684,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "მონაცემთა ბაზები"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "სერვერი"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "სტრუქტურა"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "ჩასმა"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "მოქმედებები"
@@ -2805,13 +2804,13 @@ msgstr ""
msgid "Engines"
msgstr "ძრავები"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "შეცდომა"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -2819,7 +2818,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d row(s) affected."
msgstr[1] "%1$d row(s) affected."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -2827,7 +2826,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "წაიშალა %1$d სტრიქონი."
msgstr[1] "წაიშალა %1$d სტრიქონი."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -2879,53 +2878,53 @@ msgstr "%s გათიშულია ამ MySQL სერვერზე."
msgid "This MySQL server does not support the %s storage engine."
msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Show slave status"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "მონაცემთა ბაზაში ძებნა"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "მონაცემთა ბაზაში ძებნა"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "არასწორი მონაცემთა ბაზა"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "ცხრილის არასწორი სახელი"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Table %s has been renamed to %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2933,16 +2932,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "take it"
@@ -2994,7 +2993,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3035,12 +3034,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Create relation"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3051,7 +3050,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Create relation"
@@ -3068,7 +3067,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3081,7 +3080,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3178,77 +3177,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "ახალი ინდექსის შექმნა"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Lines terminated by"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Log file count"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3314,20 +3313,20 @@ msgstr "სერვერის არჩევა"
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL სერვერზე შესვლა შეუძლებელია"
@@ -3373,18 +3372,18 @@ msgstr "ცხრილები"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "მონაცემები"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overhead"
@@ -3495,8 +3494,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL მოთხოვნა"
@@ -3506,87 +3505,87 @@ msgstr "SQL მოთხოვნა"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL-მა თქვა: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL-ის ახსნა"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP კოდის გარეშე"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP კოდის შექმნა"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "განახლება"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validate SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "ძრავები"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profiling"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "კვი"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y, %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s დღე, %s საათი, %s წუთი და %s წამი"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Routines"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3594,7 +3593,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "დასაწყისი"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3603,7 +3602,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "წინა"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3612,7 +3611,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "შემდეგი"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3620,45 +3619,45 @@ msgctxt "Last page"
msgid "End"
msgstr "დასასრული"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web server upload directory"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "დაბეჭდვა"
@@ -3751,70 +3750,70 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "არადადებითი რიცხვი"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "პორტის ნომერი არასწორია"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "არასწორი მნიშვნელობა"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "ცვლადი"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP გაფართოება არ იქნა ნაპოვნი"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, fuzzy, php-format
#| msgid "Maximum tables"
msgid "maximum %s"
@@ -3834,7 +3833,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4141,7 +4140,7 @@ msgid "Character set of the file"
msgstr "სომბოლოთა ნაკრები ფაილისათვის"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "ფორმატი"
@@ -4252,7 +4251,7 @@ msgstr "Label key"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-ის ტიპი"
@@ -4381,8 +4380,8 @@ msgstr "Customize default export options"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4833,113 +4832,119 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Maximum number of tables displayed in table list"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Maximum number of tables displayed in table list"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo link URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo link target"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
msgid "Recently used tables"
msgstr "დაბლოკილი ცხრილების გამოტოვება"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "Maximum number of characters used when a SQL query is displayed"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4947,121 +4952,121 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "მეხსიერების შეზღუდვა"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Alter table order by"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip output buffering"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
#, fuzzy
#| msgid ""
#| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
@@ -5073,46 +5078,46 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
#, fuzzy
#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Disallow BLOB and BINARY fields from editing"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
#, fuzzy
#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Protect binary fields"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
#, fuzzy
#| msgid ""
#| "ble if you want DB-based query history (requires pmadb). If disabled, s "
@@ -5125,292 +5130,292 @@ msgstr ""
"Enable if you want DB-based query history (requires pmadb). If disabled, "
"this utilizes JS-routines to display query history (lost by window close)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Query window"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Query window"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Query window"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Rename table to"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Repair threads"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "დირექტორიის შენახვა"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Host authentication order"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Host authentication rules"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "root-ით შესვლის ნებართვა"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "ავთენტიფიკაციის ტიპი"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "ცხრილის ჩანიშვნა"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "MySQL სერვერთან კავშირის შეკუმშვა"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "კავშირის შეკუმშვა"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "კავშირის ტიპი"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Control user"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "ცხრილების დათვლა"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA-ის გამოყენების აკრძალვა"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "გამოსაყენებელი PHP გაფართოება"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "მონაცემთა ბაზების დამალვა"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "სერვერის ჰოსტის სახელი"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Logout URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Maximum number of tables displayed in table list"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "პაროლის გარეშე დაკავშირება"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
#, fuzzy
#| msgid ""
#| " can use MySQL wildcard characters (% and _), escape them if you want use "
@@ -5425,49 +5430,49 @@ msgstr ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use 'my\\_db' and not 'my_db'"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "მონაცემთა ბაზა"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "სერვერის პორტი"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5478,70 +5483,70 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Recall user name"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Signon URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "SSL კავშირის ჩართვა MySQL სერვერზე"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL-ის გამოყენება"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
#, fuzzy
#| msgid ""
#| "le to describe the display fields, leave blank for no support; gested: "
@@ -5553,13 +5558,13 @@ msgstr ""
"Table to describe the display fields, leave blank for no support; suggested: "
"[kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Display fields table"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5570,51 +5575,51 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "UI პარამეტრების მაგიდა"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Statements"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5625,25 +5630,25 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL query history table"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Automatic recovery mode"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5654,25 +5659,25 @@ msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "ther a user should be displayed a "show all (records)" button"
@@ -5680,148 +5685,148 @@ msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Whether a user should be displayed a "show all (records)" button"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "პაროლის შეცვლის ფორმის ჩვენება"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "მონაცემთა ბაზის შექმნის ფორმის ჩვენება"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP-ის ინფორმაციის ჩვენება"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Show slave status"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Databases display options"
msgid "Show display direction"
msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Show open tables"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "ფუნქციების ველების ჩვენება"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Show grid"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "phpinfo() ბმულის ჩვენება"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "MySQL სერვერის შესახებ დეტალური ინფორმაციის ჩვენება"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "SQL მოთხოვნების ჩვენება"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "SQL Query box"
msgid "Retain query box"
msgstr "SQL Query box"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "სტატისტიკის ჩევნება"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5829,28 +5834,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "დაბლოკილი ცხრილების გამოტოვება"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5860,83 +5865,83 @@ msgstr ""
msgid "Password"
msgstr "პაროლი"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "მომხმარებელი:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR textarea columns"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR textarea rows"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Default table tab"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5944,59 +5949,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "ატვირთვის დირექტორია"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "ვერსიის შემოწმება"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -6023,86 +6028,86 @@ msgid "Signon authentication"
msgstr "Host authentication order"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Custom color"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV MS Excel-თვის"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "IP მისამართი არასწორია: %s"
@@ -6122,7 +6127,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6130,17 +6135,17 @@ msgid ""
"configured)."
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "სერვერი არ პასუხობს"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "დეტალები..."
@@ -6208,7 +6213,7 @@ msgstr "ცხრილის შექმნა"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "სახელი"
@@ -6406,25 +6411,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Recoding engine"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Create relation"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Create relation"
@@ -7155,18 +7160,17 @@ msgid "Display MIME types"
msgstr "MIME-ის ხელმისაწვდომი ტიპები"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "ჰოსტი"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "დაგენერირების დრო"
@@ -7378,15 +7382,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-ის შედეგი"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7484,7 +7480,7 @@ msgstr "Invalid field count in CSV input on line %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "ცხრილის სახელი"
@@ -7853,7 +7849,7 @@ msgstr "PDF-ების შექმნა"
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "ინფორმაცია ბრაუზერის შესახებ"
@@ -7956,10 +7952,10 @@ msgid "Variable"
msgstr "ცვლადი"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "მნიშვნელობა"
@@ -8018,7 +8014,7 @@ msgstr "პაროლის დაგენერირება"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -8058,8 +8054,8 @@ msgid "Edit event"
msgstr "სერვერის რედაქტირება"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8124,7 +8120,7 @@ msgstr "სრული ჩასმები"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8180,7 +8176,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8270,59 +8266,59 @@ msgstr "უსაფრთხოება"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Allows executing stored routines."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Routines"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "ფუნქცია"
@@ -8540,7 +8536,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "ატრიბუტები"
@@ -8647,12 +8643,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "უცნობი ენა: %1$s."
@@ -8703,7 +8699,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "გაწმენდა"
@@ -8714,11 +8710,11 @@ msgstr "გაწმენდა"
msgid "Columns"
msgstr "სვეტების სახელები"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8804,12 +8800,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8827,36 +8823,36 @@ msgstr ""
"a single quote (\"'\") amongst those values, precede it with a backslash "
"(for example '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "ინდექსი"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Move column"
msgstr "CHAR textarea columns"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "გარდაქმნის პარამეტრები"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8864,79 +8860,79 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "არაა"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "As defined:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "პირველადი"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "After %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s ველის დამატება"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "You have to add at least one field."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Storage Engine"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "ოპერატორი"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "ძებნა"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9136,13 +9132,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "Could not save configuration"
msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9152,8 +9148,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP არქივში ფაილების პოვნა ვერ მოხერხდა!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "შეცდომა ZIP არქივში:"
@@ -9346,20 +9342,26 @@ msgstr ""
msgid "No databases"
msgstr "მონაცემთა ბაზები არაა"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "ცხრილის სახელი"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "ცხრილის სახელი"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "ცხრილის შექმნა"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა"
@@ -10540,7 +10542,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Customize startup page"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Statements"
@@ -11675,26 +11677,26 @@ msgstr "შეცდომების იგნორირება"
msgid "Show form"
msgstr "ფორმის ჩვენება"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, fuzzy, php-format
#| msgid ""
#| " are using subversion version, run [kbd]svn update[/kbd] :-)[br]The est "
@@ -11706,11 +11708,11 @@ msgstr ""
"You are using subversion version, run [kbd]svn update[/kbd] :-)[br]The "
"latest stable version is %s, released on %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, fuzzy, php-format
#| msgid ""
#| "s [a@?page=form&formset=features#tab_Security]option[/a] should be "
@@ -11732,14 +11734,14 @@ msgstr ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Bzip2 compression "
@@ -11753,19 +11755,19 @@ msgstr ""
"decompression[/a] requires functions (%s) which are unavailable on this "
"system."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, fuzzy, php-format
#| msgid "You should use SSL connections if your web server supports it"
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "You should use SSL connections if your web server supports it"
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]GZip compression and "
@@ -11778,7 +11780,7 @@ msgstr ""
"decompression[/a] requires functions (%s) which are unavailable on this "
"system."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11786,7 +11788,7 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Security]Login cookie validity[/a] uld be "
@@ -11800,14 +11802,14 @@ msgstr ""
"be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may "
"pose a security risk such as impersonation."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, fuzzy, php-format
#| msgid ""
#| "you feel this is necessary, use additional protection settings - [a@?"
@@ -11829,7 +11831,7 @@ msgstr ""
"IP belongs to an ISP where thousands of users, including you, are connected "
"to."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, fuzzy, php-format
#| msgid ""
#| " set the [kbd]config[/kbd] authentication type and included username "
@@ -11850,7 +11852,7 @@ msgstr ""
"phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1$d#tab_Server]"
"authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Zip compression[/a] "
@@ -11862,7 +11864,7 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] "
"requires functions (%s) which are unavailable on this system."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Zip decompression[/"
@@ -11874,29 +11876,29 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] "
"requires functions (%s) which are unavailable on this system."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it"
msgid "You should use SSL connections if your database server supports it."
msgstr "You should use SSL connections if your web server supports it"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
#, fuzzy
#| msgid "You should use mysqli for performance reasons"
msgid "You should use mysqli for performance reasons."
msgstr "You should use mysqli for performance reasons"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
#, fuzzy
#| msgid "Key is too short, it should have at least 8 characters"
msgid "Key is too short, it should have at least 8 characters."
msgstr "Key is too short, it should have at least 8 characters"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
#, fuzzy
#| msgid "Key should contain letters, numbers [em]and[/em] special characters"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
@@ -11908,8 +11910,8 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters"
msgid "Wrong data"
msgstr "მონაცემთა ბაზები არაა"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11943,21 +11945,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Validate SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-ის შედეგი"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Label"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "%s databases have been dropped successfully."
msgid "The columns have been moved successfully."
@@ -12097,7 +12107,7 @@ msgstr "მნიშვნელობა"
msgid "Table %s already exists!"
msgstr "ცხრილი %s უკვე არსებობს!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -12314,45 +12324,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "ცხრილების ჩვენება"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "ადგილის გამოყენება"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "გამოყენება"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "ეფექტური"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "სტატიკური"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "დინამიური"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "სტრიქონის სიგრძე"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "სტრიქონის ზომა "
+msgstr "სტრიქონის ზომა"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12665,33 +12675,33 @@ msgstr ""
msgid "Create version"
msgstr "Create relation"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "SQL Query box"
msgid "Additional search criteria"
msgstr "SQL Query box"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Maximum number of rows to display"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/po/kk.po b/po/kk.po
index 8f80b67ce2..c3c22a1a44 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -7,16 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-03 16:49+0200\n"
-"Last-Translator: Berikbol Zharylkassyn \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:15+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: none\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.10\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -24,11 +24,11 @@ msgid "Show all"
msgstr "Бәрін көрсету"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Бет номері:"
@@ -43,30 +43,30 @@ msgstr ""
"қауіпсіздік үшін бұғаттап тастауда."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Іздеу"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -76,7 +76,7 @@ msgstr "Іздеу"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Өту"
@@ -116,8 +116,8 @@ msgid "Database comment: "
msgstr "Дерекқорына түсініктеме: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Кестеге түсініктеме:"
@@ -128,14 +128,14 @@ msgstr "Кестеге түсініктеме:"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Бағана"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -143,12 +143,12 @@ msgstr "Бағана"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Типі"
@@ -160,9 +160,9 @@ msgstr "Типі"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Бос/Null"
@@ -172,7 +172,7 @@ msgstr "Бос/Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Келісім бойынша"
@@ -181,18 +181,18 @@ msgstr "Келісім бойынша"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Сілтемелер"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Түсініктеме"
@@ -203,11 +203,11 @@ msgstr "Түсініктеме"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -225,12 +225,12 @@ msgstr "Жоқ"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -240,8 +240,8 @@ msgstr "Иә"
msgid "View dump (schema) of database"
msgstr "Мәліметтер қорының дамп (схемасын) көру"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Дерекқорында, ешбір кестелер табылмады."
@@ -310,7 +310,7 @@ msgstr "Көшірмес бұрын, дерекқорын құрып алыңы
#: libraries/config/messages.inc.php:139 tbl_operations.php:569
#, php-format
msgid "Add %s"
-msgstr "Қосу %s "
+msgstr "Қосу %s"
#: db_operations.php:540 libraries/config/messages.inc.php:123
#: tbl_operations.php:321 tbl_operations.php:571
@@ -327,8 +327,8 @@ msgstr "Көшірілген дерекқорына өту"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -348,8 +348,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Байланыс схемасын түзету немесе экспорттау"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -359,45 +359,44 @@ msgstr "Байланыс схемасын түзету немесе экспор
msgid "Table"
msgstr "Кесте"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Қатарлар"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Мөлшері"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "қолданыста"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Құру"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Соңғы жаңартылым"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Соңғы тексерім"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -486,13 +485,13 @@ msgstr "Кестелерді қолдану"
msgid "SQL query on database %s :"
msgstr "%s дерекқорына SQL сұранысы"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Сұранысты жіберу"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Рұқсат жоқ"
@@ -526,8 +525,8 @@ msgstr[0] "%1$s кестедегi сәйкестiк %2$s "
msgstr[1] "%1$s кестедегi сәйкестiктер %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Шолу"
@@ -603,11 +602,11 @@ msgstr "%s көрсетілімі жойылған"
msgid "Table %s has been dropped"
msgstr "%s кестесі жойылған болатын"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Бақылау қосулы"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Бақылауды белсендендірілу"
@@ -619,7 +618,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Түр"
@@ -664,7 +663,7 @@ msgstr "Ықшамдауды қажет ететіндерді белгілеу"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -673,17 +672,18 @@ msgid "Export"
msgstr "Экспорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Баспаға шығару түрі"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Тазарту"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -726,15 +726,14 @@ msgid "Tracked tables"
msgstr "Қадағаланатын кестелер"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Дерекқор"
@@ -752,7 +751,7 @@ msgstr "Жаңартылған"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Күй"
@@ -943,13 +942,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Файлды оқу мүмкін емес"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -972,7 +971,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -994,8 +993,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1108,9 +1107,9 @@ msgid "Close"
msgstr "Жабу"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Өзгерту"
@@ -1134,7 +1133,7 @@ msgstr "Статикалық мәлiметтер"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Барлығы"
@@ -1145,12 +1144,12 @@ msgid "Other"
msgstr "Басқа"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1230,13 +1229,13 @@ msgid "System swap"
msgstr "Үстемелеу жүйесі"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "КБ"
@@ -1295,27 +1294,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Байт"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "ЭБ"
@@ -1355,9 +1354,9 @@ msgstr "Тәңiр жарылқасын, ең болмаса топтамаға
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Жоқ"
@@ -1528,7 +1527,7 @@ msgstr ""
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Уақыт"
@@ -1831,7 +1830,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1845,7 +1844,7 @@ msgstr "Іздеу параметрлерiн жасыру"
msgid "Show search criteria"
msgstr "Іздеу параметрлерiн көрсету"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Iздестiрудi үлкейту"
@@ -2009,7 +2008,7 @@ msgstr ""
msgid "More"
msgstr "Тағы"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2094,63 +2093,63 @@ msgid "December"
msgstr "Желтоқсан"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Қаң"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Ақп"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Нау"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Сәу"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Мам"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Мау"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Шіл"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Там"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Қыр"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Қаз"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Қар"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Жел"
@@ -2188,32 +2187,32 @@ msgid "Sun"
msgstr "Жек"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Дүй"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Сей"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Сәр"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Бей"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Жұм"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Сен"
@@ -2352,12 +2351,12 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
#, fuzzy
msgid "Font size"
msgstr "Қарiп өлшемi"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2365,47 +2364,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Файлды жүктеу, оның кеңейтілім салдарынан тоқтатылды."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Файлды жүктеу кезіндегі белгісіз қате."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Жүктелген файлды ауыстыру кезіндегі қате."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Жүктелген файлды оқу(ауыстыру) мүмкін емес."
@@ -2419,7 +2418,7 @@ msgstr "Индексі анықталмаған!"
msgid "Indexes"
msgstr "Индекстер"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2455,46 +2454,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Дерекқоры"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2573,27 +2572,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Қате"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2636,50 +2635,50 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr ""
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2687,16 +2686,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2748,7 +2747,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2789,12 +2788,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2805,7 +2804,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
@@ -2822,7 +2821,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2835,7 +2834,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2932,73 +2931,73 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Сызық"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr ""
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3064,20 +3063,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3121,18 +3120,18 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3235,8 +3234,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "kk"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr ""
@@ -3246,144 +3245,144 @@ msgstr ""
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr ""
@@ -3467,68 +3466,68 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3547,7 +3546,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3826,7 +3825,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr ""
@@ -3925,7 +3924,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4047,8 +4046,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
@@ -4459,108 +4458,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4568,434 +4571,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5004,350 +5007,350 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5355,28 +5358,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5386,76 +5389,76 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5463,59 +5466,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5536,82 +5539,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5631,21 +5634,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5707,7 +5710,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -5859,25 +5862,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr ""
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr ""
@@ -6537,18 +6540,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6746,15 +6748,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6846,7 +6840,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7197,7 +7191,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7294,10 +7288,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7356,7 +7350,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7392,8 +7386,8 @@ msgid "Edit event"
msgstr ""
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7443,7 +7437,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7497,7 +7491,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7568,57 +7562,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -7793,7 +7787,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -7890,12 +7884,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -7941,7 +7935,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -7950,11 +7944,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8040,12 +8034,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8053,35 +8047,35 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
msgid "Move column"
msgstr "Бағана іші"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8089,71 +8083,71 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr ""
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr ""
@@ -8275,11 +8269,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8289,8 +8283,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8440,16 +8434,20 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+msgid "Filter databases by name"
+msgstr ""
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr ""
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -9547,7 +9545,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -10628,37 +10626,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10667,39 +10665,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -10707,21 +10705,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -10730,7 +10728,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -10740,37 +10738,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -10778,8 +10776,8 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -10809,21 +10807,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr ""
@@ -10939,7 +10945,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11138,43 +11144,43 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr ""
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11460,27 +11466,27 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index 9c1173a448..e50234d89a 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-02-17 10:54+0200\n"
"Last-Translator: minsung kang \n"
"Language-Team: korean \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "모두 보기"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "페이지 번호:"
@@ -38,30 +38,30 @@ msgstr ""
"안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "검색"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "검색"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "실행"
@@ -111,8 +111,8 @@ msgid "Database comment: "
msgstr "데이터베이스 설명:"
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "테이블 설명"
@@ -123,14 +123,14 @@ msgstr "테이블 설명"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "컬럼명"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "컬럼명"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "종류"
@@ -155,9 +155,9 @@ msgstr "종류"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +167,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "기본값"
@@ -176,18 +176,18 @@ msgstr "기본값"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "링크 대상:"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "설명"
@@ -198,11 +198,11 @@ msgstr "설명"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "아니오 "
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "예"
msgid "View dump (schema) of database"
msgstr "데이터베이스의 덤프(스키마) 데이터 보기"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "데이터베이스에 테이블이 없습니다."
@@ -323,8 +323,8 @@ msgstr "복사한 테이블로 옮겨감"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "관계 스키마를 수정 또는 내보내기"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "관계 스키마를 수정 또는 내보내기"
msgid "Table"
msgstr "테이블 "
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "행"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "크기"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "사용중"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "생성"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "마지막 업데이트"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "마지막 검사"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -481,13 +480,13 @@ msgstr "사용할 테이블"
msgid "SQL query on database %s :"
msgstr "데이터베이스 %s 에 SQL 질의:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "질의 실행"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "접근이 거부되었습니다."
@@ -522,8 +521,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "테이블 %s 에서 %s 건 일치"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "보기"
@@ -598,11 +597,11 @@ msgstr "뷰 %s가 제거되었습니다."
msgid "Table %s has been dropped"
msgstr "테이블 %s를 제거했습니다."
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "트래킹이 활성화되었습니다."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "트래킹이 활성화되어 있지 않습니다."
@@ -615,7 +614,7 @@ msgstr ""
"이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "뷰"
@@ -660,7 +659,7 @@ msgstr "오버헤드를 가진 테이블들을 체크"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -669,17 +668,18 @@ msgid "Export"
msgstr "내보내기"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "인쇄용 보기"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "비우기"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -722,15 +722,14 @@ msgid "Tracked tables"
msgstr "추적된 테이블"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "데이터베이스"
@@ -748,7 +747,7 @@ msgstr "수정됨"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "상태"
@@ -939,13 +938,13 @@ msgstr "북마크 보이기"
msgid "The bookmark has been deleted."
msgstr "북마크를 제거했습니다."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "파일을 읽을 수 없습니다"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, fuzzy, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -974,7 +973,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "북마크 %s가 생성되었습니다."
@@ -1000,8 +999,8 @@ msgstr ""
"파싱된 데이터가 없지만, 이것은 보통 phpMyAdmin이 php 시간 제한을 늘리지 않고"
"는 이 가져오기를 마칠 수 없음을 뜻합니다."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1111,9 +1110,9 @@ msgid "Close"
msgstr "닫기"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "수정"
@@ -1137,7 +1136,7 @@ msgstr "정적 데이터"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "전체 쿼리수"
@@ -1148,12 +1147,12 @@ msgid "Other"
msgstr "기타"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1236,13 +1235,13 @@ msgid "System swap"
msgstr "시스템 스왑"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1300,27 +1299,27 @@ msgid "Connections"
msgstr "연결 수"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1361,9 +1360,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "없음"
@@ -1544,7 +1543,7 @@ msgstr "SQL 해석"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "시간"
@@ -1866,7 +1865,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1880,7 +1879,7 @@ msgstr "검색 조건 숨기기"
msgid "Show search criteria"
msgstr "검색 조건 보이기"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2062,7 +2061,7 @@ msgstr "암호 변경"
msgid "More"
msgstr "월"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2152,63 +2151,63 @@ msgid "December"
msgstr "12월"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "1월"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "2월"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "3월"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "4월"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "5월"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "6월"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "7월"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "8월"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "9월"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "10월"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "11월"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "12월"
@@ -2249,32 +2248,32 @@ msgid "Sun"
msgstr "일"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "토"
@@ -2416,11 +2415,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "글꼴 크기"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2428,39 +2427,39 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니"
"다."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "임시 폴더가 없습니다."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "디스크 쓰기에 실패했습니다."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2468,11 +2467,11 @@ msgstr ""
"업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a] 참조."
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "업로드 파일을 읽을 수 없습니다."
@@ -2486,7 +2485,7 @@ msgstr "인덱스가 설정되지 않았습니다!"
msgid "Indexes"
msgstr "인덱스"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2522,46 +2521,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "데이터베이스 "
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "서버"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "구조"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "삽입"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "테이블 작업"
@@ -2643,25 +2642,25 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "오류"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d 열에 적용되었습니다."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d 열이 삭제되었습니다."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2704,51 +2703,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "데이터베이스 검색"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "데이터베이스 검색"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "테이블 %s을(를) %s(으)로 이름을 변경하였습니다."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2756,16 +2755,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2817,7 +2816,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2858,12 +2857,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "서버 버전"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2874,7 +2873,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "서버 버전"
@@ -2891,7 +2890,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2904,7 +2903,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3003,77 +3002,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "새 인덱스 만들기"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "줄(열) 구분자"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "전체 사용량"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3143,21 +3142,21 @@ msgstr "서버 선택"
msgid "Cookies must be enabled past this point."
msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"최근 %s초 동안 아무 동작이 없어 로그아웃 되었습니다. 다시 로그인해주세요."
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL 서버에 로그인할 수 없습니다"
@@ -3203,18 +3202,18 @@ msgstr "테이블 수"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "데이터"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "부담"
@@ -3325,8 +3324,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL 질의"
@@ -3336,145 +3335,145 @@ msgstr "SQL 질의"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL 메시지: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "SQL 검증을 하기 위한 연결이 실패했습니다."
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL 해석"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL 해석 생략"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP 코드 없이 보기"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP 코드 보기"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "다시 보기"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL 검사 생략"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL 검사"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "이 쿼리 인라인 수정"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "인라인"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "프로파일링"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "일"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%y-%m-%d %H:%M "
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s일 %s시간 %s분 %s초"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "매개 변수 누락:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "처음"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "이전"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "다음"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "마지막"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "데이터베이스 "%s" 로 이동."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십시오"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "업로드 파일:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "웹서버 업로드 디렉토리"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "업로드 디렉토리에 접근할 수 없습니다"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "업로드할 파일이 없습니다."
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "실행하기"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "인쇄"
@@ -3567,70 +3566,70 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "변수"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3649,7 +3648,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3936,7 +3935,7 @@ msgid "Character set of the file"
msgstr "파일 문자셋"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "형식"
@@ -4035,7 +4034,7 @@ msgstr "레이블 키"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME 형식"
@@ -4165,8 +4164,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV 데이터"
@@ -4598,110 +4597,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "테이블 분석"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4709,449 +4712,449 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "리소스 제한"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "다음 순서대로 테이블 정렬(변경)"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "질의 창"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "질의 창"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "질의 창"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "테이블 이름 바꾸기"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "연결 수"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "아무데서나"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "테이블이 없습니다"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "데이터베이스가 없습니다"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "서버 선택"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5160,369 +5163,369 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "데이터베이스명"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "서버 선택"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "테이블 분석"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "테이블 복구"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "서버 선택"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "열(칼럼) 설명(코멘트) 출력하기"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "명세"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "서버 버전"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP 정보 보기"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "데이터베이스 사용량 통계"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "테이블 보기"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "grid 보기"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL 질의"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "통계보기"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5530,28 +5533,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5561,81 +5564,81 @@ msgstr ""
msgid "Password"
msgstr "암호"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "사용자명:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Textarea columns"
msgstr "컬럼 추가/삭제"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "기본값"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5643,59 +5646,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5722,87 +5725,87 @@ msgid "Signon authentication"
msgstr "인증중입니다..."
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "사용자 지정 색상"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
msgid "Database export options"
msgstr "데이터베이스 사용량 통계"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS엑셀 CSV 데이터"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to the source"
msgid "Could not connect to Drizzle server"
msgstr "소스에 접속할 수 없음"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5822,23 +5825,23 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "서버 응답이 없습니다"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5903,7 +5906,7 @@ msgstr "새 페이지 만들기"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "이름"
@@ -6079,25 +6082,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "서버 버전"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "서버 버전"
@@ -6793,18 +6796,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "호스트"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "처리한 시간"
@@ -7015,15 +7017,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL 결과"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "결과값이 없습니다. (빈 레코드 리턴.)"
@@ -7118,7 +7112,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7479,7 +7473,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr "열(칼럼) 설명(코멘트) 출력하기"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7577,10 +7571,10 @@ msgid "Variable"
msgstr "변수"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "값"
@@ -7640,7 +7634,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7678,8 +7672,8 @@ msgid "Edit event"
msgstr "보냄"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7739,7 +7733,7 @@ msgstr "완전한 INSERT문 작성"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7794,7 +7788,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7877,56 +7871,56 @@ msgstr "질의 종류"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "함수"
@@ -8125,7 +8119,7 @@ msgstr "테이블 설명"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "보기"
@@ -8229,12 +8223,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8284,7 +8278,7 @@ msgstr "데이터베이스 %s에 SQL 질의를 실행"
msgid "Run SQL query/queries on database %s"
msgstr "데이터베이스 %s에 SQL 질의를 실행"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8295,11 +8289,11 @@ msgstr ""
msgid "Columns"
msgstr "열(칼럼) 이름"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "이 SQL 질의를 북마크함"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8389,13 +8383,13 @@ msgstr ""
"질의 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 필수 PHP 확장모듈을 "
"설치했는지 확인해 보십시오."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "트래킹이 활성화되었습니다."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8406,36 +8400,36 @@ msgstr ""
"오: 'a','b','c'... 여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다"
"면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 넣으십시오. (예: a)"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "인덱스"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "컬럼 제거"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8446,79 +8440,79 @@ msgstr ""
"오: 'a',100, b,'c'... 여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다"
"면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "없음"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "기본"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s 다음에"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "필드 추가하기"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합니다."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "테이블 작업"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "검색"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8644,11 +8638,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8658,8 +8652,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8829,19 +8823,25 @@ msgstr ""
msgid "No databases"
msgstr "데이터베이스가 없습니다"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "테이블명"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "테이블명"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "새 페이지 만들기"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "데이터베이스를 선택하세요"
@@ -10013,7 +10013,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "명세"
@@ -11118,37 +11118,37 @@ msgstr ""
msgid "Show form"
msgstr "폼 보기"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11157,39 +11157,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "웹 서버가 지원한다면 이 %s 옵션 %s 허용"
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11197,21 +11197,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11220,7 +11220,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11230,39 +11230,39 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it."
msgid "You should use SSL connections if your database server supports it."
msgstr "웹 서버가 지원한다면 SSL 연결 사용"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "효율적 이유로 mysqli 사용"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "암호 없이 서버 접속 허용"
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "키가 너무 짧다. 8글자 이상 사용"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자 포함"
@@ -11272,8 +11272,8 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자 포함"
msgid "Wrong data"
msgstr "데이터베이스가 없습니다"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11307,21 +11307,29 @@ msgstr "SQL 쿼리 보기"
msgid "Validated SQL"
msgstr "SQL 검사"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL 결과"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Label"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "선택한 사용자들을 삭제했습니다."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11460,7 +11468,7 @@ msgstr "값"
msgid "Table %s already exists!"
msgstr "사용자 %s 가 이미 존재합니다!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "테이블 %s 을 제거했습니다."
@@ -11675,45 +11683,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "referential 무결성 검사:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "테이블 보기"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "공간 사용량"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "사용법(량)"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "실제량"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "행(레코드) 통계"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "정적"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "동적(다이내믹)"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "행 길이"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Row size"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12021,30 +12029,30 @@ msgstr ""
msgid "Create version"
msgstr "서버 버전"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL 질의"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 04ff0d44ae..96f956ca41 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-03 12:52+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: lithuanian \n"
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Rodyti viską"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Puslapis:"
@@ -39,30 +39,30 @@ msgstr ""
"naršyklė blokuoja atnaujinimus tarp langų dėl nustatyto saugumo."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Paieška"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Paieška"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Vykdyti"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Duomenų bazės komentaras: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Lentelės komentarai"
@@ -124,14 +124,14 @@ msgstr "Lentelės komentarai"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Stulpelis"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Stulpelis"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tipas"
@@ -156,9 +156,9 @@ msgstr "Tipas"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -168,7 +168,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Nutylint"
@@ -177,18 +177,18 @@ msgstr "Nutylint"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Sąryšis su"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentarai"
@@ -199,11 +199,11 @@ msgstr "Komentarai"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Taip"
msgid "View dump (schema) of database"
msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Duomenų bazėje nerasta lentelių."
@@ -324,8 +324,8 @@ msgstr "Pereiti į nukopijuotą duomenų bazę"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Keisti arba eksportuoti ryšių schemą"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "Keisti arba eksportuoti ryšių schemą"
msgid "Table"
msgstr "Lentelė"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Eilutės"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Dydis"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "šiuo metu naudojama"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Sukurta"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Paskutinis atnaujinimas"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Paskutinis patikrinimas"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "Naudoti lenteles"
msgid "SQL query on database %s :"
msgstr "SQL-užklausa duomenų bazėje %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Vykdyti užklausą"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Priėjimas uždraustas"
@@ -526,8 +525,8 @@ msgstr[1] "%s atitikmenys lentelėse %s "
msgstr[2] "%s atitikmenų lentelėse %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Peržiūrėti"
@@ -604,11 +603,11 @@ msgstr "Rodinys %s buvo panaikintas"
msgid "Table %s has been dropped"
msgstr "Lentelė %s panaikinta"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Sekimas yra aktyvus."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Sekimas yra neaktyvus."
@@ -622,7 +621,7 @@ msgstr ""
"%sdokumentacijoje%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Rodinys"
@@ -667,7 +666,7 @@ msgstr "Pažymėti turinčias perteklių"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -676,17 +675,18 @@ msgid "Export"
msgstr "Eksportuoti"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Spausdinti struktūrą"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Išvalyti"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -729,15 +729,14 @@ msgid "Tracked tables"
msgstr "Sekamos lentelės"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Duomenų bazė"
@@ -755,7 +754,7 @@ msgstr "Atnaujinta"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Būsena"
@@ -952,13 +951,13 @@ msgstr "Rodomos žymelės"
msgid "The bookmark has been deleted."
msgstr "Nuoroda ištrinta."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Negalima perskaityti failo"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -988,7 +987,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Žymė %s sukurta"
@@ -1015,8 +1014,8 @@ msgstr ""
"dažniausiai reiškia, kad phpMyAdmin negali baigti importuoti nebent Jūs "
"padidintumėte PHP laiko limitą."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1127,9 +1126,9 @@ msgid "Close"
msgstr "Uždaryti"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Redaguoti"
@@ -1153,7 +1152,7 @@ msgstr "Statiniai duomenys"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Iš viso"
@@ -1164,12 +1163,12 @@ msgid "Other"
msgstr "Kita"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1250,13 +1249,13 @@ msgid "System swap"
msgstr "Sistemos swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1314,27 +1313,27 @@ msgid "Connections"
msgstr "Prisijungimai"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1376,9 +1375,9 @@ msgstr "Prašome pridėti bent vieną kintamąjį į eilę"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Ne"
@@ -1562,7 +1561,7 @@ msgstr "Paaiškinti SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Laikas"
@@ -1902,7 +1901,7 @@ msgstr "%d nėra galimas eilutės numeris."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1916,7 +1915,7 @@ msgstr "Slėpti paieškos kriterijų"
msgid "Show search criteria"
msgstr "Rodyti paieškos kriterijų"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2088,7 +2087,7 @@ msgstr "Pakeisti slaptažodį"
msgid "More"
msgstr "Daugiau"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2179,63 +2178,63 @@ msgid "December"
msgstr "gruodžio"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Sau"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Vas"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Kov"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Bal"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Geg"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Bir"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Lie"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Rgp"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Rgs"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Spa"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Lap"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Grd"
@@ -2276,32 +2275,32 @@ msgid "Sun"
msgstr "Sek"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Pir"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Ant"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Tre"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Ket"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pen"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Šeš"
@@ -2448,11 +2447,11 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Blogos teisės konfigūracinio failo, neturėtų būti įrašymo galimybė visiems!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Šrifto dydis"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Per daug klaidų žinučių, dėl to kai kurių neparodėme."
@@ -2460,11 +2459,11 @@ msgstr "Per daug klaidų žinučių, dėl to kai kurių neparodėme."
msgid "File was not an uploaded file."
msgstr "Failas nebuvo įkeltasis failas."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2472,27 +2471,27 @@ msgstr ""
"Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML "
"formoje."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Įkeliamas failas buvo tik dalinai įkeltas."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Trūksta laikino katalogo."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Nepavyko įrašyti failo į diską."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Nežinoma klaida failų įkėlime."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2500,11 +2499,11 @@ msgstr ""
"Klaida perkeliant įkeltą failą, žiūrėti [a@./Documentation."
"html#faq1_11@Documentation]DUK 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Klaida perkeliant atsiųstą failą."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Negalima perskaityti (perkelti) įkelto failo."
@@ -2518,7 +2517,7 @@ msgstr "Nėra aprašytų indeksų!"
msgid "Indexes"
msgstr "Indeksai"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2555,46 +2554,46 @@ msgid ""
msgstr ""
"Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Duomenų bazės"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serveris"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktūra"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Įterpti"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Veiksmai"
@@ -2675,13 +2674,13 @@ msgstr ""
msgid "Engines"
msgstr "Varikliai"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Klaida"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2689,7 +2688,7 @@ msgstr[0] "Pakeista %1$d eilutė."
msgstr[1] "Pakeistos %1$d eilutės."
msgstr[2] "Pakeista %1$d eilučių."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2697,7 +2696,7 @@ msgstr[0] "Ištrinta %1$d eilutė."
msgstr[1] "Ištrintos %1$d eilutės."
msgstr[2] "Ištrinta %1$d eilučių."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2741,53 +2740,53 @@ msgstr "%s šiame MySQL serveryje yra išjungtas."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "lentelės būsena nežinoma:"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Iš duomenų bazės"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s nerasta!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Neteisingas duomenų bazės vardas"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Neteisingas lentelės vardas"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Klaida pervadinant lentelę iš %1$s į %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Lentelė %s pervadinta į %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Nepavyko išsaugoti lentelės naudotojo sąsajos nustatymų."
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2795,16 +2794,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Peržiūra negalima."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "pasirinkti"
@@ -2856,7 +2855,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2897,13 +2896,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Sukurti versiją"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2914,7 +2913,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2932,7 +2931,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2945,7 +2944,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3044,75 +3043,75 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Sukurti naują indeksą"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Eilutės baigiasi"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr ""
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3187,14 +3186,14 @@ msgstr "Pasirinkti serverį"
msgid "Cookies must be enabled past this point."
msgstr "Slapukai turi būti priimami."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Prisijungimą be slaptažodžio draudžia nustatymai (žiūrėti AllowNoPassword)."
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3202,8 +3201,8 @@ msgstr ""
"Daugiau nei %s sekundžių nebuvo atlikta jokių veiksmų, prašome prisijungti "
"iš naujo"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Nepavyksta prisijungti prie MySQL darbinės stoties"
@@ -3247,18 +3246,18 @@ msgstr "Lentelės"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Duomenys"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Perteklius"
@@ -3368,8 +3367,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL užklausa"
@@ -3379,81 +3378,81 @@ msgstr "SQL užklausa"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL atsakymas: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Nepavyko prisijungti prie SQL tikrintuvo!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Paaiškinti SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Praleisti SQL užklausos aiškinimą"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "be PHP kodo"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP kodas"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Atnaujinti"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Praleisti SQL užklausos tikrinimą"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Patikrinti SQL užklausą"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Greitas užklausos redagavimas"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Redaguoti čia"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profiliavimas"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sek"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y m. %B %d d. %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s d., %s val., %s min. ir %s s"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Trūkstamas parametras:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3461,7 +3460,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Pradžia"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3470,7 +3469,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Ankstesnis"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3479,7 +3478,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Kitas"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3487,44 +3486,44 @@ msgctxt "Last page"
msgid "End"
msgstr "Pabaiga"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Pereiti į „%s“ duomenų bazę."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Spustelėkite suskleidimui/atskleidimui"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Naršyti savo kompiuteryje:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams."
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Nėra failų išsiuntimui"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Vykdyti"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Spausdinti"
@@ -3609,68 +3608,68 @@ msgstr "abu iš paminėtų"
msgid "neither of the above"
msgstr "nei vieną iš paminėtų"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Nėra teigiamas skaičius"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Nėra neneigiamas skaičius"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Neteisingas jungties skaičius"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Neteisinga reikšmė"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Reikšmė turi būti tokia pati kaip arba mažesnė negu %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Trūksta duomenų %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "neprieinamas"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "„%s“ reikalauja %s praplėtimo"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "importavimas neveiks, nerasta funkcija (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "eksportavimas neveiks, nerasta funkcija (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL tikrintuvas išjungtas"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP plėtinys nerastas"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "didžiausias %s"
@@ -3689,7 +3688,7 @@ msgid "Set value: %s"
msgstr "Nustatyti reikšmę: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Atstatyti numatytąsias reikšmes"
@@ -3988,7 +3987,7 @@ msgid "Character set of the file"
msgstr "Failo simbolių koduotė:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formatas"
@@ -4087,7 +4086,7 @@ msgstr "Pavadinimo raktas"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME tipas"
@@ -4209,8 +4208,8 @@ msgstr "Pasirinkti numatytuosius nustatymus"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4642,53 +4641,59 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Simboliai kurie atskiria duomenų bazes į atskiras medžio šakas"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Duomenų bazės medžio skyriklis"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
"Tik maža versija; rodyti duomenų bazės medį (skyriklis nustatomas žemiau)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Rodyti duomenų bazes medyje"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Išjungti tai jeigu norite matyti visas duomenų bazes iškart"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Naudoti mažą versiją"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maksimalus lentelių medžio gylis"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Simboliai kurie atskiria lenteles į skirtingas medžio šakas"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Lentelės medžio skyriklis"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "Adresas kur nuves logotipas esantis navigacijos rėmelyje"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logotipo saito adresas"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4696,37 +4701,37 @@ msgstr ""
"Atidaryti susijusį puslapį pagrindiniame lange ([kbd]pagrindiniame[/kbd]) "
"arba ([kbd]naujame[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logotipas nukreipia į nuorodą"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Paryškinti serverį užvedus pelės žymekliu"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Įjungti paryškinimą"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Didžiausias skaičius paskiausiai naudotų lentelių; nustatyti 0, kad išjungti"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Paskiausiai naudotos lentelės"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "Didžiausias rodomas simbolių kiekis ne skaitiniuose stulpeliuose"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Apriboti stulpelių simbolius"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4737,21 +4742,21 @@ msgstr ""
"lengva pamiršti atsijungi iš kitų skirtingų serverių (prie kurių esate "
"prisijungę)."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Ištrinti visus slapukus atsijungiant"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4763,51 +4768,51 @@ msgstr ""
"egzistuojančioje sesijoje ir bus ištrinta naršyklės uždarymo momentu. "
"Rekomenduojama nepatikimose aplinkose."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Prisijungimo slapuko saugojimas"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Nustatyti prisijungimo slapuko galiojimo laiką (sekundžių tikslumu)"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Prisijungimo slapuko galiojimas"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Padvigubinti LONGTEXT laukelių dydį"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Didesnis textarea LONGTEXT'ui"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
"Didžiausias leistinas simbolių kiekis naudojamas SQL užklausai parodyti"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Maksimalus SQL rodymo ilgis"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Naudotojai negali nustatyti didesnės reikšmės"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Maksimalus skaičius rodomų duomenų bazių kairiame rėmelyje ir duomenų bazių "
"sąraše"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Didžiausias duomenų bazių skaičius"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4817,29 +4822,29 @@ msgstr ""
"rinkinys turi daugiau eilučių, „Ankstesnis“ ir „Kitas“ saito nuorodos bus "
"parodytos."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maksimalus skaičius eilučių rodymui"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Didžiausias skaičius lentelių"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt įspėjimas"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4847,45 +4852,45 @@ msgstr ""
"Skaičius leidžiamų paskirti baitų scenarijui (skriptui), pvz., [kbd]32M[/"
"kbd] ([kbd]0[/kbd] neriboja)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Atminties apribojimai"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Kur parodyti lentelės eilučių nuorodas"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
"Naudoti natūralią tvarką rikiuojant lentelių ir duomenų bazių pavadinimus"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Natūrali tvarka"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Naudoti tik piktogramas (ikonas), tik tekstą arba abu"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Piktograminė navigacijos juostelė"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"naudoti GZip išvedimo buferiui tam, kad padidinti greitį HTTP persiuntimų"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip išvedimo buferis"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4893,19 +4898,19 @@ msgstr ""
"[kbd]SMART[/kbd] - t.y. mažėjantis rikiavimas stulpeliams kurių tipai TIME, "
"DATE, DATETIME ir TIMESTAMP, didėjantis kitu atveju"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Numatytoji rikiavimo tvarka"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Naudoti ilgalaikius prisijungimus prie MySQL duomenų bazių"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Ilgalaikiai sujungimai"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4915,23 +4920,23 @@ msgstr ""
"puslapyje, kai neįmanoma rasti phpMyAdmin nustatytų saugyklai reikalingų "
"lentelių"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Trūksta phpMyAdmin konfigūracijos saugojimo lentelės"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Piktograminės lentelių operacijos"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Neleisti redaguoti BLOB ir BINARY stulpelių"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Apsaugoti dvejetainius stulpelius"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4941,173 +4946,173 @@ msgstr ""
"(reikalinga phpMyAdmin nustatymų saugykla). Jeigu išjungta, naudoja "
"JavaScript užklausų istorijai rodyti (prarandama uždarius langą)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Nuolatinė užklausų istorija"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Kiek užklausų laikoma istorijoje"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Užklausų istorijos ilgis"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Parodoma kortelė kai atidaromas naujas užklausos langas"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Numatytoji užklausos lango kortelė"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Užklausos lango aukštis (taškais)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Užklausos lango aukštis"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Užklausos lango plotis (taškais)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Užklausos lango plotis"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Pasirinkti kokios funkcijos bus naudojamos ženklų rinkinio (koduotės) "
"konvertavimui"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Įrašymo varikliukas"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Kai naršomos lentelės, atsimenamas kiekvienos lentelės rikiavimas"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Įsiminti lentelės rūšiavimą"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "Pakartoti antraštes kas X langelių, [kbd]0[/kbd] išjungia šią galimybę"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Pakartoti antraštes"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Per vieną kartą išsaugoti redaguotus laukelius"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Katalogas kur eksportai gali būti išsaugomi serveryje"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Išsaugoti katalogą"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Palikite tuščią, jei nenaudojamas"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Palikite tuščią nutylėtoms reikšmėms"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Leisti prisijungti be slaptažodžio"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Leisti prisijungti kaip root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Autentifikacijos tipas"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Pažymėti lentelę"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Stulpelio informacinė lentelė"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Naudoti suspaudimą jungiantis prie MySQL serverio"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Naudoti suspaustą susijungimą"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Kaip prisijungti prie serverio, jei nesate tikras palikite [kbd]tcp[/kbd]"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Susijungimo tipas"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Kontroliuoti naudotojų slaptažodį"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5115,31 +5120,31 @@ msgstr ""
"Specialus MySQL naudotojas sukonfigūruotas su ribotom galimybėm, daugiau "
"informacijos [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Kontroliuoti naudotoją"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Kontroliuoti naudotoją"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Suskaičiuoti lenteles kai rodomas duomenų bazių sąrašas"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Suskaičiuoti lenteles"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5147,11 +5152,11 @@ msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Suprojektuoti lentelę"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5159,28 +5164,28 @@ msgstr ""
"Daugiau informacijos [a@http://sf.net/support/tracker.php?aid=1849494]PMA[/"
"a] ir [a@http://bugs.mysql.com/19588]MySQL[/a] klaidų puslapiuose"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Neleisti matyti INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Kokius PHP plėtinius naudoti; Jūs turėtumėte naudoti mysqli jei palaikoma"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Naudoti PHP išplėtimą"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Slėpti duomenų bazės, atitinkančias standartines išraiškas (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Slėpti duomenų bazes"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5188,41 +5193,41 @@ msgstr ""
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history"
"[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL užklausų žurnalo lentelė"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Kompiuterio, kuriame veikia MySQL serveris, pavadinimas"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Serverio adresas"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Atsijungimo nuoroda"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Didžiausias skaičius išsaugomų lentelės nustatymų"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Bandyti prisijungti be slaptažodžio"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Prisijungti be slaptažodžio"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5237,30 +5242,30 @@ msgstr ""
"ir pabaigoje nurodykite [kbd]*[/kbd], kad parodytumėte likusias abėcėlės "
"tvarka."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Rodyti tik šias duomenų bazes"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Palikite tuščią, jei nenaudojate autentifikacijos pagal nustatymus"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF schema: puslapių lentelė"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5270,21 +5275,21 @@ msgstr ""
"informaciją rasite [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. "
"Palikite tušią, kad nepalaikytų. Pasiūlymas: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Duomenų bazės vardas"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Jungtis per kurią MySQL serveris laukia atsakymo, palikite tuščią numatytam "
"nustatymui"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Serverio jungtis"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -5295,11 +5300,11 @@ msgstr ""
"Palikite tuščią jeigu nenorite „įkyrių“ neseniai naudotų lentelių tarp "
"seansų, siūlome: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Paskiausiai naudota lentelė"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5307,19 +5312,19 @@ msgstr ""
"Palikite tuščią jei nenorite, kad palaikytų [a@http://wiki.phpmyadmin.net/"
"pma/relation]sąryšines nuorodas[/a], pasiūlymas: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Sąryšių lentelė"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL komanda išgauti prieinamas duombazes"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES komanda"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5327,52 +5332,52 @@ msgstr ""
"Žiūrėkite [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"autentifikacijos tipus[/a] dėl pavyzdžių"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Prisijungimo sesijos vardas"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Prisijungimo adresas"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "Prievadas, kurio klausosi MySQL serveris, palikite tuščią įprastiniam"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Serverio prievadas (socket)"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Įjungti SSL susijungimams prie MySQL serverio"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Naudoti SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF schema: lentelės koordinatės"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Rodyti lentelės stulpelius"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid "blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
@@ -5382,69 +5387,69 @@ msgstr ""
"Jei tuščias nebus „įkyrių“ UI nustatymų tarp seansų, siūlome: [kbd]"
"pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Naudotojo sąsajos nustatymų lentelė"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Pridėti DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Pridėti DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Pridėti DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Sekamos užklausos"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL užklausų sekimo lentelė"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Automatiškai sukurti versijas"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -5455,118 +5460,118 @@ msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Leisti rodyti visas eilutes (įrašus)"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Rodyti slaptažodžio keitimo formą"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Rodyti duomenų bazės sukūrimo formą"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Rodyti daugiau veiksmų"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Rodyti pagrindinio serverio būklę"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "Numatytoji rodymo kryptis"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Rodyti laukelių tipus"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Rodyti funkcijų laukelius redagavimo/įterpimo režime"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Rodyti funkcijų laukelius"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show indexes"
msgid "Show hint"
msgstr "Rodyti indeksus"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5574,55 +5579,55 @@ msgstr ""
"Rodyti nuorodą į [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"išvedimą"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Rodyti phpinfo() nuorodą"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Rodyti išsamią MySQL serverio informaciją"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Nustato kada turi būti rodomos SQL užklausos kurias sugeneravo phpMyAdmin"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Rodyti SQL užklausas"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Slėpti užklausos laukelį"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Leisti rodyti duomenų bazių ir lentelių statistiką (pavyzdžiui vietos "
"naudojimą)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Rodyti statistika"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Rodyti duomenų bazės komentarą vietoje jos pavadinimo"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5630,28 +5635,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Rodyti lentelės komentarą vietoj jos pavadinimo"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Praleisti užrakintas lenteles"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Reikalaujama, kad SQL Validator būtų įjungtas"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5661,7 +5666,7 @@ msgstr "Reikalaujama, kad SQL Validator būtų įjungtas"
msgid "Password"
msgstr "Slaptažodis"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5669,11 +5674,11 @@ msgstr ""
"[strong]Įspėjimas:[/strong] reikalauja PHP SOAP įskiepio arba PEAR SOAP, kad "
"būtų įdiegtas"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Įjungti SQL Validator (tikrintoją)"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5681,60 +5686,60 @@ msgstr ""
"Jeigu Jūs turite individualizuotą slapyvardį, parašykite jį čia (numatytasis "
"yra [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Vartotojo vardas"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Įspėjimas rodomas pagrindiniame puslapyje jeigu Suhosin yra aptinkamas"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin įspėjimas"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Textarea stulpeliai"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Textarea eilutės"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Naršyklės lango pavadinimas kai duomenų bazė yra pasirinkta"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Naršyklės lango pavadinimas kai niekas nepasirinkta"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Numatytasis pavadinimas"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Naršyklės lango pavadinimas kai serveris yra pasirinktas"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Naršyklės lango pavadinimas, kai pasirinkta lentelė"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5742,27 +5747,27 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Sąrašas patikimų proxy serverių IP leidimui/atmetimui"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Serverio katalogas į kurį Jūs galite įkelti failus importavimui"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Įkelties katalogas"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Leisti paiešką visos duomenų bazės viduje"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Naudoti duomenų bazės paiešką"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5770,28 +5775,28 @@ msgstr ""
"Kai išjungta, naudotojai negali nustatyti jokių žemiau esančių nustatymų, "
"nepriklausomo nuo to, kad pažymėjimo laukelis yra dešinėje"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Patikrinti ar naujausia versija"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Įjungia naujausios versijos patikrinimą pagrindiniame phpMyAdmin puslapyje"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Versijos patikrinimas"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5799,7 +5804,7 @@ msgstr ""
"Įjungia [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] glaudinimą "
"importo ir eksporto operacijoms"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5820,84 +5825,84 @@ msgid "Signon authentication"
msgstr "Prisijungimo tapatybės nustatymas"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV naudojant LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document skaičiuoklė"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Greitas"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Pritaikytas"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Duomenų bazės eksportavimo nustatymai"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV formatas MS Excel programai"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document rašyklė"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "Nepavyko prisijungti prie MySQL serverio"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Nepavyko prisijungti prie MySQL serverio"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Neteisingas IP adresas: %s"
@@ -5917,7 +5922,7 @@ msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5925,17 +5930,17 @@ msgid ""
"configured)."
msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatsako"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detalės..."
@@ -5999,7 +6004,7 @@ msgstr "Sukurti lentelę"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Pavadinimas"
@@ -6154,26 +6159,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Koduotės konvertavimas:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version"
msgid "committed on %1$s by %2$s"
msgstr "Sukurti versiją"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version"
msgid "authored on %1$s by %2$s"
@@ -6866,18 +6871,17 @@ msgid "Display MIME types"
msgstr "Rodyti MIME-tipus"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Darbinė stotis"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Atlikimo laikas"
@@ -7099,15 +7103,7 @@ msgstr "Nerasta duomenų GIS vizualizavimui."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL rezultatas"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Sugeneravo"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)."
@@ -7211,7 +7207,7 @@ msgstr "Neteisingas stulpelių skaičius CSV įvedimo eilutėje %d."
msgid "DocSQL"
msgstr "docSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Lentelės vardas"
@@ -7572,7 +7568,7 @@ msgstr "PDF failo generavimas"
msgid "Displaying Column Comments"
msgstr "Išvesti stulpelių komentarus"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Naršyklės transformacija"
@@ -7681,10 +7677,10 @@ msgid "Variable"
msgstr "Kintamasis"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Reikšmė"
@@ -7743,7 +7739,7 @@ msgstr "Generuoti slaiptažodį"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7779,8 +7775,8 @@ msgid "Edit event"
msgstr "Redaguoti įvykį"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Klaida vykdant užklausą"
@@ -7836,7 +7832,7 @@ msgstr "Pabaigus išlaikyti"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7890,7 +7886,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
@@ -7968,35 +7964,35 @@ msgstr "Saugumo tipas"
msgid "SQL data access"
msgstr "SQL duomenų priėjimas"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8004,22 +8000,22 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcija"
@@ -8196,7 +8192,7 @@ msgstr "Turinys"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributai"
@@ -8295,12 +8291,12 @@ msgid "Toggle scratchboard"
msgstr "įjungti scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nežinoma kalba: %1$s."
@@ -8346,7 +8342,7 @@ msgstr "Vykdyti SQL sakinius serveryje %s"
msgid "Run SQL query/queries on database %s"
msgstr "Vykdyti SQL sakinius duomenų bazėje %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Išvalyti"
@@ -8355,11 +8351,11 @@ msgstr "Išvalyti"
msgid "Columns"
msgstr "Stulpeliai"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Šios SQL užklausą pasižymėti kaip"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Leisti kitiems vartotojams naudotis šia žyme"
@@ -8458,13 +8454,13 @@ msgstr ""
"Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti "
"visi privalomi php moduliai, nurodyti %sdokumentacijoje%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "Stebėjimas %s.%s yra aktyvuotas."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8477,7 +8473,7 @@ msgstr ""
"reikšmių, tuomet prieš šios simbolius reikia papildomo dešininio įžambaus "
"brūkšnio (pavyzdžiui: '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8485,19 +8481,19 @@ msgstr ""
"Nenaudokite išskyrimo simbolių ar kabučiu, nurodydami reikšmę pagal "
"nutylėjimą. Naudokitės šiuo formatu: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeksas"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Pašalinti stulpelį(-ius)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8506,11 +8502,11 @@ msgstr ""
"Norėdami gauti pilną sąrašą galimų transformacijų ir jų MIME tipų "
"transformacijų, spauskite %stransformacijos paaiškinimą%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Transformacijos nustatymai"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8523,74 +8519,74 @@ msgstr ""
"(\"'\"), naudokite viršutinį vertikalų pasvirą brūkšnį prieš šiuos simbolius "
"(pvz: '\\\\xyz' ar 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM arba SET duomenys per ilgi?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Padidinti redagavimo erdvę"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Nėra"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Kaip nurodyta:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Pirminis"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Po %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Pridėti %s stulpelį(-ius)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Saugojimo variklis"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "SKAIDINIO (PARTITION) apibrėžimas"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operatorius"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Paieška"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8766,11 +8762,11 @@ msgstr ""
"Jūsų nustatymai bus išsaugoti tik šiai sesijai. Saugant juos visam laikui "
"reikia %sphpMyAdmin konfigūracijos talpinimo%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Nepavyko išsaugoti konfigūracijos"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8780,8 +8776,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP archyve nerasta failų!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Klaida ZIP archyve:"
@@ -8951,18 +8947,24 @@ msgstr ""
msgid "No databases"
msgstr "Nėra duomenų bazių"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Pakeisti lentelės rikiavimą pagal:"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Pakeisti lentelės rikiavimą pagal:"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Sukurti lentelę"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Pasirinkite duomenų bazę"
@@ -10131,7 +10133,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Adaptuoti paleidimo (pagrindinį) puslapį"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Parametrai"
@@ -11243,12 +11245,12 @@ msgstr "Ignoruoti klaidas"
msgid "Show form"
msgstr "Rodyti formą"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11256,15 +11258,15 @@ msgstr ""
"Nepavyko nuskaityti versijos. Galbūt Jūs esate atsijungęs arba serveris "
"neatsako."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Gautas netinkamas versijos formatas iš serverio"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Nesuprantama versijos eilutė"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11273,11 +11275,11 @@ msgstr ""
"Jūs naudojate Git versiją, paleiskite [kbd]git pull[/kbd] :-)[br]Naujausia "
"stabili versija yra %s, išleista %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Prieinama naujesnė stabili versija"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11286,7 +11288,7 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11296,7 +11298,7 @@ msgstr ""
"nustatymą pagal slapukus (cookie), taigi raktas Jums buvo automatiškai "
"sugeneruotas. Jis naudojamas užšifruoti slapukus; jums nereikia jo atsiminti."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11305,19 +11307,19 @@ msgstr ""
"%sBzip2 glaudinimas ir išskleidimas%s reikalauja funkcijų (%s) kurios nėra "
"galimos Jūsų sistemoje."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Šis %snustatymas%s turėtų būti įjungtas jeigu Jūsų serveris jį palaiko."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11326,7 +11328,7 @@ msgstr ""
"%sGZip suspaudimui ir išspaudimui%s reikalingos funkcijos (%s) neprieinamos "
"šioje sistemoje."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11334,7 +11336,7 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Security]Login cookie validity[/a] uld be "
@@ -11349,14 +11351,14 @@ msgstr ""
"ilgesnės negu 1800 gali kelti saugumo riziką kai kitas žmogus prisėda prie "
"to kompo."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11365,7 +11367,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, fuzzy, php-format
#| msgid ""
#| "t the [kbd]config[/kbd] authentication type and included username sword "
@@ -11387,7 +11389,7 @@ msgstr ""
"page=servers&mode=edit&id=%1$d#tab_Server]identifikacijos tipą[/a] į "
"[kbd]slapukų[/kbd] arba [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]Zip compression[/a] uires "
@@ -11399,7 +11401,7 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]Zip glaudinimas[/a] "
"reikalauja funkcijų (%s) kurių nėra Jūsų sistemoje."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]Zip ompression[/requires "
@@ -11411,25 +11413,25 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]Zip išskleidimas[/a] "
"reikalauja funkcijų (%s) kurių nėra Jūsų sistemoje."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it."
msgid "You should use SSL connections if your database server supports it."
msgstr "Naudokite SSL prisijungimus, jei Jūsų serveris juos palaiko."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Turėtumėte naudoti mysqli dėl našumo (efektyvumo) priežasčių."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Jūs leidžiate prisijungti prie serverio be slaptažodžio."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Raktas per trumpas, jis privalo turėti bent 8 simbolius."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Raktas turėtų būti sudarytas iš raidžių, skaičių [em]ir[/em] specialiųjų "
@@ -11441,8 +11443,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Nėra duomenų"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Naršyti išorines reikšmes"
@@ -11474,21 +11476,29 @@ msgstr "Rodoma SQL užklausa"
msgid "Validated SQL"
msgstr "Patikrintas SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL rezultatas"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Sugeneravo"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Iškilo problemos su `%s` lentelės indeksais"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Nuorodos Antraštė"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Lentelė %1$s sėkmingai pakeista"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11620,7 +11630,7 @@ msgstr "Y Reikšmės"
msgid "Table %s already exists!"
msgstr "Lentelė %s jau yra!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Sukurta %1$s lentelė."
@@ -11821,45 +11831,45 @@ msgstr "Pašalinti skaidymą"
msgid "Check referential integrity:"
msgstr "Patikrinti sąryšių vientisumą:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Rodyti lentelės"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Vietos naudojimas"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Išnaudota"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektyvus"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Eilučių statistika"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "pastovus"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinaminis"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Eilutės ilgis"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Eilutės dydis"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12153,33 +12163,33 @@ msgstr ""
msgid "Create version"
msgstr "Sukurti versiją"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Slėpti paieškos kriterijų"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Maksimalus skaičius eilučių rodymui"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/po/lv.po b/po/lv.po
index 25df34d7f0..20387c3620 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,15 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-03-12 09:16+0100\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:18+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: latvian \n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
+"2);\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -19,11 +21,11 @@ msgid "Show all"
msgstr "Rādīt visu"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Lapas numurs:"
@@ -38,30 +40,30 @@ msgstr ""
"iestādījumu dēļ."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Meklēt"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +73,7 @@ msgstr "Meklēt"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Aiziet!"
@@ -109,8 +111,8 @@ msgid "Database comment: "
msgstr "Datubāzes komentārs: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentārs tabulai"
@@ -121,16 +123,16 @@ msgstr "Komentārs tabulai"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Kolonnu nosaukumi"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +140,12 @@ msgstr "Kolonnu nosaukumi"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tips"
@@ -155,9 +157,9 @@ msgstr "Tips"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulle"
@@ -167,7 +169,7 @@ msgstr "Nulle"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Noklusēts"
@@ -176,18 +178,18 @@ msgstr "Noklusēts"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Linki uz"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentāri"
@@ -198,11 +200,11 @@ msgstr "Komentāri"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +222,12 @@ msgstr "Nē"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +237,8 @@ msgstr "Jā"
msgid "View dump (schema) of database"
msgstr "Apskatīt datubāzes dampu (shēmu)"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Tabulas nav atrastas šajā datubāzē."
@@ -326,8 +328,8 @@ msgstr "Pārslēgties uz nokopēto datubāzi"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -352,8 +354,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Relāciju shēma"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -363,45 +365,44 @@ msgstr "Relāciju shēma"
msgid "Table"
msgstr "Tabula"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rindas"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Izmērs"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "lietošanā"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Izveidošana"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Pēdējā atjaunošana"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Pēdējā pārbaude"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -496,13 +497,13 @@ msgstr "Lietot tabulas"
msgid "SQL query on database %s :"
msgstr "SQL vaicājums uz datubāzes %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Izpildīt vaicājumu"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Pieeja aizliegta"
@@ -537,8 +538,8 @@ msgstr[0] "%s rezultāti tabulā %s "
msgstr[1] "%s rezultāti tabulā %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Apskatīt"
@@ -624,11 +625,11 @@ msgstr "Lauks %s tika izdzēsts"
msgid "Table %s has been dropped"
msgstr "Tabula %s tika izdzēsta"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -640,7 +641,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -686,7 +687,7 @@ msgstr "Iezīmēt tabulas ar pārtēriņu"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -695,17 +696,18 @@ msgid "Export"
msgstr "Eksports"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Izdrukas versija"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Iztukšot"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -752,15 +754,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Datubāze"
@@ -779,7 +780,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Statuss"
@@ -985,13 +986,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Ieraksts tika dzēsts."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Nevar nolasīt failu"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1014,7 +1015,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1036,8 +1037,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1166,9 +1167,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Labot"
@@ -1195,7 +1196,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Kopā"
@@ -1206,12 +1207,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1298,13 +1299,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1368,27 +1369,27 @@ msgid "Connections"
msgstr "Konekcijas"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "baiti"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1434,9 +1435,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Nav"
@@ -1622,7 +1623,7 @@ msgstr "Izskaidrot SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Laiks"
@@ -1988,7 +1989,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2004,7 +2005,7 @@ msgstr "SQL vaicājums"
msgid "Show search criteria"
msgstr "SQL vaicājums"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2191,7 +2192,7 @@ msgstr "Mainīt paroli"
msgid "More"
msgstr "P"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2299,27 +2300,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2327,37 +2328,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jūn"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jūl"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dec"
@@ -2406,32 +2407,32 @@ msgid "Sun"
msgstr "Sv"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "O"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "T"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "C"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pk"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "S"
@@ -2590,11 +2591,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2602,48 +2603,48 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
#, fuzzy
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2657,7 +2658,7 @@ msgstr "Nav definēti indeksi!"
msgid "Indexes"
msgstr "Indeksi"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2694,46 +2695,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Datubāzes"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serveris"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktūra"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Pievienot"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Darbības"
@@ -2814,20 +2815,20 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Kļūda"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2835,7 +2836,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Rindas nav iezīmētas"
msgstr[1] "Rindas nav iezīmētas"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2882,51 +2883,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Meklēt datubāzē"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "Meklēt datubāzē"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabula %s tika pārsaukta par %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2934,16 +2935,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "izmantot šo stilu"
@@ -2995,7 +2996,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3036,12 +3037,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Servera versija"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3052,7 +3053,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Servera versija"
@@ -3069,7 +3070,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3082,7 +3083,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3181,77 +3182,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Izveidot jaunu indeksu"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Rindas atdalītas ar"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Kopā"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3323,21 +3324,21 @@ msgstr "Servera izvēle"
msgid "Cookies must be enabled past this point."
msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Nebija aktivitātes vairāk kā %s sekunžu laikā, lūdzu autorizējieties vēlreiz"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Nevar pieslēgties MySQL serverim"
@@ -3381,18 +3382,18 @@ msgstr "Tabulas"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Dati"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Pārtēriņš"
@@ -3503,8 +3504,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL vaicājums"
@@ -3514,83 +3515,83 @@ msgstr "SQL vaicājums"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL teica: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Izskaidrot SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Neizskaidrot SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Bez PHP koda"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Izveidot PHP kodu"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Atjaunot"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Nepārbaudīt SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Pārbaudīt SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sv"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Pievienot jaunu lauku"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3598,7 +3599,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Sākums"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3607,7 +3608,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Iepriekšējie"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3616,7 +3617,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nākamie"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3624,45 +3625,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Beigas"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "pāriet pie datubāzes "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web servera augšupielādes direktorija"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Drukāt"
@@ -3755,72 +3756,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Mainīgais"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Links nav atrasts"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3839,7 +3840,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4129,7 +4130,7 @@ msgid "Character set of the file"
msgstr "Tabulas kodējums:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formats"
@@ -4243,7 +4244,7 @@ msgstr "Etiķetes atslēga"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME tips"
@@ -4373,8 +4374,8 @@ msgstr "Datubāzu eksporta opcijas"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV dati"
@@ -4810,110 +4811,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analizēt tabulu"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4921,452 +4926,452 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Resursu ierobežojumi"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Mainīt datu kārtošanas laukus"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Vaicājuma logs"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Vaicājuma logs"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Vaicājuma logs"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Pārsaukt tabulu uz"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Konekcijas"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Jebkurš hosts"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Nav tabulu"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Defragmentēt tabulu"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Nav datubāzu"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Servera izvēle"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5375,373 +5380,373 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Datubāze"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Servera ID"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analizēt tabulu"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Restaurēt tabulu"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Servera izvēle"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Rādu kolonnu komentārus"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmentēt tabulu"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Parametrs"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "Servera versija"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Parādīt PHP informāciju"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Datubāzu eksporta opcijas"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Rādīt tabulas"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Rādīt režģi"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Rādīt pilnos vaicājumus"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL vaicājums"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Rindas statistika"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5749,28 +5754,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5780,81 +5785,81 @@ msgstr ""
msgid "Password"
msgstr "Parole"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Lietotājvārds:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Noklusēts"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5862,59 +5867,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5935,82 +5940,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Datubāzu eksporta opcijas"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV dati MS Excel formātā"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6030,23 +6035,23 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatbild"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6113,7 +6118,7 @@ msgstr "Izveidot jaunu lapu"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nosaukums"
@@ -6300,25 +6305,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Servera versija"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Servera versija"
@@ -7039,18 +7044,17 @@ msgid "Display MIME types"
msgstr "Pieejamie MIME tipi"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Hosts"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Izveidošanas laiks"
@@ -7263,15 +7267,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL rezultāts"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Uzģenerēja"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)."
@@ -7366,7 +7362,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7731,7 +7727,7 @@ msgstr "PDF failu izveide"
msgid "Displaying Column Comments"
msgstr "Rādu kolonnu komentārus"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Pārlūkprogrammas transformācija"
@@ -7830,10 +7826,10 @@ msgid "Variable"
msgstr "Mainīgais"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Vērtība"
@@ -7892,7 +7888,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7930,8 +7926,8 @@ msgid "Edit event"
msgstr "Nosūtīts"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7993,7 +7989,7 @@ msgstr "Pilnas INSERT izteiksmes"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8049,7 +8045,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8135,57 +8131,57 @@ msgstr "Vaicājuma tips"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcija"
@@ -8386,7 +8382,7 @@ msgstr "Satura rādītājs"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atribūti"
@@ -8495,12 +8491,12 @@ msgid "Toggle scratchboard"
msgstr "parādīt/noslēpt piezīmju tafeli"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8550,7 +8546,7 @@ msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
msgid "Run SQL query/queries on database %s"
msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8562,11 +8558,11 @@ msgstr "Kalendārs"
msgid "Columns"
msgstr "Kolonnu nosaukumi"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Saglabāt šo SQL vaicājumu"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
@@ -8584,7 +8580,7 @@ msgstr ""
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Rādīt šo vaicājumu šeit atkal "
+msgstr "Rādīt šo vaicājumu šeit atkal"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8666,12 +8662,12 @@ msgstr ""
"Nevar inicializēt SQL pārbaudītāju. Lūdzu pārbaudiet, vai esat uzinstalējuši "
"nepieciešamos PHP paplašinājumus, kā aprakstīts %sdokumentācijā%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8689,7 +8685,7 @@ msgstr ""
"(\\) vai vienkāršo pēdiņu (') kādā no šīm vērtībām, lieciet tās priekšā "
"atpakaļējo slīpsvītru (piemēram, '\\\\xyz' vai 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8697,19 +8693,19 @@ msgstr ""
"Noklusētajām vērtībām, lūdzu ievadiet tikai pašu vertību, bez izsargāšanās "
"ar atpakaļējo slīpsvītru vai pēdiņām, lietojot šo formatu: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indekss"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8718,11 +8714,11 @@ msgstr ""
"Lai iegūtu pieejamo transformāciju opcijas un to MIME tipu transformācijas, "
"uzklikšķiniet uz %stransformāciju apraksti%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Transformācijas opcijas"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8734,79 +8730,79 @@ msgstr ""
"vienkāršā pēdiņa (\"'\") starp šīm vērtībām, lieciet tās priekšā vēl vienu "
"atpakaļējo slīpsvītru (piemēram '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Nav"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primārā"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Pilni teksti"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Pēc %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Pievienot %s lauku(s)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operators"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Meklēt"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8991,11 +8987,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9005,8 +9001,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9183,19 +9179,25 @@ msgstr ""
msgid "No databases"
msgstr "Nav datubāzu"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Mainīt datu kārtošanas laukus"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Mainīt datu kārtošanas laukus"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Izveidot jaunu lapu"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Lūdzu izvēlieties datubāzi"
@@ -9819,7 +9821,7 @@ msgstr "Tabulu specifiskās privilēģijas"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā "
+msgstr "Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā"
#: server_privileges.php:711
msgid "Administration"
@@ -10394,7 +10396,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Parametrs"
@@ -11509,37 +11511,37 @@ msgstr ""
msgid "Show form"
msgstr "Rādīt krāsas"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11548,39 +11550,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11588,21 +11590,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11611,7 +11613,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11621,37 +11623,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11661,8 +11663,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Nav datubāzu"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Pārlūkot ārējās vērtības"
@@ -11696,21 +11698,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Pārbaudīt SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL rezultāts"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Uzģenerēja"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problēmas ar indeksiem tabulā `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Nosaukums"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11845,7 +11855,7 @@ msgstr "Vērtība"
msgid "Table %s already exists!"
msgstr "Lietotājs %s jau eksistē!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Tabula %s tika izdzēsta"
@@ -12066,45 +12076,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Pārbaudīt referenciālo integritāti:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Rādīt tabulas"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Diska vietas lietošana"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Aizņem"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektīvs"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Rindas statistika"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamisks"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Rindas garums"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Rindas izmērs "
+msgstr "Rindas izmērs"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12414,30 +12424,30 @@ msgstr ""
msgid "Create version"
msgstr "Servera versija"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL vaicājums"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/mk.po b/po/mk.po
index dd658c0e21..3168301c0c 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2011-05-19 17:04+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:21+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: macedonian_cyrillic \n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
-"X-Generator: Pootle 2.0.5\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "прикажи ги сите"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Број на страници:"
@@ -39,30 +39,30 @@ msgstr ""
"прозорима због сигурносних подешавања"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Пребарување"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Пребарување"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
@@ -107,11 +107,11 @@ msgstr "Базата на податоци %1$s е креирана"
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "Коментар на базата на податоци:"
+msgstr "Коментар на базата на податоци: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Коментар на табелата"
@@ -122,16 +122,16 @@ msgstr "Коментар на табелата"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Имиња на колони"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Имиња на колони"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -156,9 +156,9 @@ msgstr "Тип"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -168,7 +168,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Default"
@@ -177,18 +177,18 @@ msgstr "Default"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Врски кон"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Коментари"
@@ -199,11 +199,11 @@ msgstr "Коментари"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Не"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Да"
msgid "View dump (schema) of database"
msgstr "Прикажи содржина (шема) на базата"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Табелите не се пронајдени во базата на податоци."
@@ -325,8 +325,8 @@ msgstr "Префрли се на копираната база на подато
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -351,8 +351,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Релациона шема"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -362,45 +362,44 @@ msgstr "Релациона шема"
msgid "Table"
msgstr "Табела"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Записи"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Големина"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "се користи"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Направено"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Последна измена"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Последна проверка"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -495,13 +494,13 @@ msgstr "Користи табели"
msgid "SQL query on database %s :"
msgstr "SQL упит на базата на податоци %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Изврши SQL"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Пристапот не е допуштен"
@@ -536,8 +535,8 @@ msgstr[0] "%s погодоци во табелата %s "
msgstr[1] "%s погодоци во табелата %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Преглед"
@@ -623,11 +622,11 @@ msgstr "Прегледот %s е избришан"
msgid "Table %s has been dropped"
msgstr "Табелата %s е избришана"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -639,7 +638,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Поглед"
@@ -685,7 +684,7 @@ msgstr "табели кои имаат пречекорувања"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -694,17 +693,18 @@ msgid "Export"
msgstr "Извоз"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Преглед за печатење"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Испразни"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -747,15 +747,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "База на податоци"
@@ -773,7 +772,7 @@ msgstr "Ажурирано"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Статус"
@@ -980,13 +979,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Маркерот е избришан."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Податотеката не е можно да се прочита"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1009,7 +1008,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1031,8 +1030,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1160,9 +1159,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Промени"
@@ -1189,7 +1188,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Вкупно"
@@ -1200,12 +1199,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1293,13 +1292,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1367,27 +1366,27 @@ msgid "Connections"
msgstr "Конекции"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "бајти"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1433,9 +1432,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "нема"
@@ -1623,7 +1622,7 @@ msgstr "Објасни SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Време"
@@ -1988,7 +1987,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2004,7 +2003,7 @@ msgstr "SQL упит"
msgid "Show search criteria"
msgstr "SQL упит"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2190,7 +2189,7 @@ msgstr "Промена на лозинка"
msgid "More"
msgstr "Пон"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2298,27 +2297,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2326,37 +2325,37 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "дек"
@@ -2405,32 +2404,32 @@ msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Вто"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Саб"
@@ -2589,11 +2588,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2601,37 +2600,37 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
#, fuzzy
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
@@ -2640,11 +2639,11 @@ msgstr ""
"Бројот на записи може да биде приближен. За подетални информации види FAQ "
"3.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2658,7 +2657,7 @@ msgstr "Клучот не е дефиниран!"
msgid "Indexes"
msgstr "Клучеви"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2695,46 +2694,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "База на податоци"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Нов запис"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Операции"
@@ -2815,20 +2814,20 @@ msgstr ""
msgid "Engines"
msgstr "Складишта"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Грешка"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2836,7 +2835,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Нема селектирани записи"
msgstr[1] "Нема селектирани записи"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2883,51 +2882,51 @@ msgstr "%s е оневозможен на овој MySQL сервер."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Овој MySQL сервер не подржува %s вид на складиште."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Пребарување низ базата на податоци"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "Пребарување низ базата на податоци"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Табелата %s е преименувана во %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2935,16 +2934,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "превземи"
@@ -2996,7 +2995,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3037,12 +3036,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Верзија на серверот"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3053,7 +3052,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Верзија на серверот"
@@ -3070,7 +3069,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3083,7 +3082,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3182,77 +3181,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Креирај нов клуч"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Линиите се завршуваат со"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Вкупно"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3324,13 +3323,13 @@ msgstr "Избор на сервер"
msgid "Cookies must be enabled past this point."
msgstr "вашиот веб прелистувач треба да допушти cookies"
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3338,8 +3337,8 @@ msgstr ""
"Немаше никаква активност %s или повеќе секунди, ве молиме најавете се "
"повторно"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Не можам да се пријавам на MySQL серверот"
@@ -3383,18 +3382,18 @@ msgstr "Табели"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Податоци"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Пречекорување"
@@ -3506,8 +3505,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL упит"
@@ -3517,85 +3516,85 @@ msgstr "SQL упит"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL порака: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Објасни SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Прескокни ги објаснувањата на SQL-от"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "без PHP код"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Направи PHP код"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Освежи"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Прескокни ја проверката на SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Провери SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Складишта"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нед"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. во %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s денови, %s часови, %s минути и %s секунди"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Рутини"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3603,7 +3602,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Почеток"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3612,7 +3611,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Претходна"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3621,7 +3620,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Следен"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3629,45 +3628,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Крај"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Премин на базата "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "директориум за праќање на веб серверот "
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Директориумот кој го избравте за праќање не е достапен"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Печати"
@@ -3760,72 +3759,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Променлива"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Врската не е пронајдена"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3844,7 +3843,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4137,7 +4136,7 @@ msgid "Character set of the file"
msgstr "Кодна страна на податотеката:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Формат"
@@ -4251,7 +4250,7 @@ msgstr "Ознака на клучот"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-типови"
@@ -4381,8 +4380,8 @@ msgstr "Опции за извоз на бази на податоци"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV формат"
@@ -4821,110 +4820,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Анализа на табелата"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4932,455 +4935,455 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Ограничување на ресурси"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Промени го редоследот во табелата"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Прозорец за упити"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Прозорец за упити"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Прозорец за упити"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Промени го името на табелата во "
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Нишки на поправка"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
#, fuzzy
msgid "Save directory"
msgstr "Основен директориум на податоците"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Конекции"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Било кој host"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Нема табела"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Дефрагментирај ја табелата"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Базата на податоци не постои"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Избор на сервер"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5389,374 +5392,374 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "База на податоци"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "ID на серверот"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Анализа на табелата"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Поправка на табелата"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Избор на сервер"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Прикажувам коментари на колоните"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Дефрагментирај ја табелата"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Име"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Режим на автоматско опоравување"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Прикажи информации за PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Опции за извоз на бази на податоци"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Прикажи табели"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Прикажи мрежа"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Прикажи комплетни упити"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Статистики за записите"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5764,28 +5767,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5795,81 +5798,81 @@ msgstr ""
msgid "Password"
msgstr "Лозинка"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Корисничко име:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Додади/избриши колона"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Default"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5877,59 +5880,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5950,82 +5953,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Опции за извоз на бази на податоци"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV за MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6045,7 +6048,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6053,17 +6056,17 @@ msgid ""
"configured)."
msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Серверот не одговара"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6132,7 +6135,7 @@ msgstr "Направи нова страница"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Име"
@@ -6319,25 +6322,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Верзија на серверот"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Верзија на серверот"
@@ -6577,7 +6580,7 @@ msgstr "во упитот"
#: libraries/display_tbl.lib.php:2838
msgid "Showing rows"
-msgstr "Приказ на записи од "
+msgstr "Приказ на записи од"
#: libraries/display_tbl.lib.php:2848
msgid "total"
@@ -7079,18 +7082,17 @@ msgid "Display MIME types"
msgstr "Достапни MIME-типови"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Време на креирање"
@@ -7304,15 +7306,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL резултат"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Генерирал"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL врати празен резултат (нула записи)."
@@ -7407,7 +7401,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7772,7 +7766,7 @@ msgstr "Креирање на PDF"
msgid "Displaying Column Comments"
msgstr "Прикажувам коментари на колоните"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Транформации на веб прелистувачот"
@@ -7872,10 +7866,10 @@ msgid "Variable"
msgstr "Променлива"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Вредност"
@@ -7934,7 +7928,7 @@ msgstr "Генерирање на лозинка"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7972,8 +7966,8 @@ msgid "Edit event"
msgstr "Пратено"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
msgid "Error in processing request"
@@ -8034,7 +8028,7 @@ msgstr "Комплетен INSERT (со имиња на полињата)"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8090,7 +8084,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8178,60 +8172,60 @@ msgstr "Вид на упит"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Дозволува извршување на stored рутини."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Рутини"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Функција"
@@ -8432,7 +8426,7 @@ msgstr "Содржина"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Атрибути"
@@ -8541,12 +8535,12 @@ msgid "Toggle scratchboard"
msgstr "Вклучи/исклучи работна табела"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8596,7 +8590,7 @@ msgstr "Изврши SQL упит(и) на базата %s"
msgid "Run SQL query/queries on database %s"
msgstr "Изврши SQL упит(и) на базата %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8608,11 +8602,11 @@ msgstr "Календар"
msgid "Columns"
msgstr "Имиња на колони"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Запамти SQL упит"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "дади дозвола на секој корисник да пристапува на овој упит."
@@ -8638,7 +8632,7 @@ msgstr "Види само"
#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
msgid "web server upload directory"
-msgstr "директориум за праќање на веб серверот "
+msgstr "директориум за праќање на веб серверот"
#: libraries/sqlparser.lib.php:136
msgid ""
@@ -8711,12 +8705,12 @@ msgstr ""
"SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани "
"неопходните PHP екстензии опишане во %sдокументацијата%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8733,7 +8727,7 @@ msgstr ""
"'a','b','c'... Ако ви треба обратна коса црта (\"\\\") или апостроф "
"(\"'\") користите ги во escap форма (пример '\\\\xyz' или 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8741,19 +8735,19 @@ msgstr ""
"За default вредност, внесете само една вредност, без коси црти или наводници "
"во следниов облик: а"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Клуч"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Додади/избриши колона"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8762,11 +8756,11 @@ msgstr ""
"За листа на достапни опции на транформациите и нивните MIME-тип "
"трансформации, кликнете на %sопис на трансформацијата%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Опции на трансформацијата"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8778,79 +8772,79 @@ msgstr ""
"или апостроф (\"'\") во тие вредности, ставете обратна коса црта пред нив "
"(пример '\\\\xyz' или 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "нема"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Примарен"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Текст клуч"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "после полето %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Додади %s полиња"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Морате да изберете барем една колона за приказ"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Вид на складиште"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Оператор"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Пребарување"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9053,11 +9047,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9067,8 +9061,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9251,19 +9245,25 @@ msgstr ""
msgid "No databases"
msgstr "Базата на податоци не постои"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Промени го редоследот во табелата"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Промени го редоследот во табелата"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Направи нова страница"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Изберете база на податоци"
@@ -9888,8 +9888,7 @@ msgstr "Привилегии поврзани со табелата"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr ""
-" Напомена: MySQL имињата на привилегите мора да бидат со латинични букви "
+msgstr "Напомена: MySQL имињата на привилегите мора да бидат со латинични букви"
#: server_privileges.php:711
msgid "Administration"
@@ -10466,7 +10465,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Име"
@@ -11582,37 +11581,37 @@ msgstr ""
msgid "Show form"
msgstr "Прикажи боја"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11621,39 +11620,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11661,21 +11660,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11684,7 +11683,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11694,37 +11693,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11734,8 +11733,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Базата на податоци не постои"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Прегледни ги надворешните вредности"
@@ -11769,21 +11768,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Провери SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL резултат"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Генерирал"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирање на табелата `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Назив"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Изабраните корисници успешно се избришани."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11922,7 +11929,7 @@ msgstr "Вредност"
msgid "Table %s already exists!"
msgstr "Корисник %s веќе постои!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Табелата %s е избришана"
@@ -12057,7 +12064,7 @@ msgstr "Опции на табелата"
#: tbl_operations.php:362
msgid "Rename table to"
-msgstr "Промени го името на табелата во "
+msgstr "Промени го името на табелата во"
#: tbl_operations.php:544
msgid "Copy table to (database. table):"
@@ -12141,45 +12148,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Провери го референцијалниот интегритет:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Прикажи табели"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Големина"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Големина"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Ефективни"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Статистики за записите"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "динамички"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Должина на запис"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Големина на запис"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12490,30 +12497,30 @@ msgstr ""
msgid "Create version"
msgstr "Верзија на серверот"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Направи \"упит по пример\" (џокер знак: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL упит"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/ml.po b/po/ml.po
index 57b34710cc..002cf04887 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2011-09-27 08:42+0200\n"
"Last-Translator: \n"
"Language-Team: Malayalam \n"
@@ -22,11 +22,11 @@ msgid "Show all"
msgstr "എല്ലാം കാണിക്കൂ"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "താൾ:"
@@ -38,30 +38,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "തിരയൂ"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "തിരയൂ"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "പോകൂ"
@@ -109,8 +109,8 @@ msgid "Database comment: "
msgstr "വിവരശേഖര അഭിപ്രായം: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
@@ -121,14 +121,14 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "നിര"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -136,12 +136,12 @@ msgstr "നിര"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "തരം"
@@ -153,9 +153,9 @@ msgstr "തരം"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "ശൂന്യം"
@@ -165,7 +165,7 @@ msgstr "ശൂന്യം"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "സ്വതേ"
@@ -174,18 +174,18 @@ msgstr "സ്വതേ"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "കണ്ണികൾ"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "അഭിപ്രായങ്ങൾ"
@@ -196,11 +196,11 @@ msgstr "അഭിപ്രായങ്ങൾ"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,12 +218,12 @@ msgstr "ഇല്ല"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -233,8 +233,8 @@ msgstr "അതേ"
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "വിവരശേഖരത്തിൽ ഒരു പട്ടികയും കണ്ടെത്താനായില്ല."
@@ -321,8 +321,8 @@ msgstr ""
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -340,8 +340,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr ""
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -351,45 +351,44 @@ msgstr ""
msgid "Table"
msgstr "പട്ടിക"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "വരികൾ"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "വലിപ്പം"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "ഉപയോഗത്തിൽ"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "സൃഷ്ടി"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "അവസാനം നവീകരിച്ചത്"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "അന്തിമ പരിശോധന"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -478,13 +477,13 @@ msgstr "പട്ടികകൾ ഉപയോഗിക്കുക"
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr ""
@@ -518,8 +517,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -595,11 +594,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -611,7 +610,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -656,7 +655,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -665,17 +664,18 @@ msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -718,15 +718,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -744,7 +743,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -929,13 +928,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -958,7 +957,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -980,8 +979,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1090,9 +1089,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
@@ -1116,7 +1115,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
@@ -1127,12 +1126,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ""
@@ -1211,13 +1210,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr ""
@@ -1275,27 +1274,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr ""
@@ -1337,9 +1336,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr ""
@@ -1510,7 +1509,7 @@ msgstr ""
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1815,7 +1814,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1829,7 +1828,7 @@ msgstr ""
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr ""
@@ -1993,7 +1992,7 @@ msgstr ""
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2078,63 +2077,63 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr ""
@@ -2172,32 +2171,32 @@ msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr ""
@@ -2336,11 +2335,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2348,47 +2347,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2402,7 +2401,7 @@ msgstr ""
msgid "Indexes"
msgstr ""
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2438,46 +2437,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr ""
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2556,27 +2555,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2619,51 +2618,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Database %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് മാറ്റിയിരിക്കുന്നു"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2671,16 +2670,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2732,7 +2731,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2773,12 +2772,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2789,7 +2788,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
@@ -2806,7 +2805,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2819,7 +2818,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2916,71 +2915,71 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr ""
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr ""
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3046,20 +3045,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3103,18 +3102,18 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3217,8 +3216,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr ""
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr ""
@@ -3228,144 +3227,144 @@ msgstr ""
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "അച്ചടിക്കുക"
@@ -3449,68 +3448,68 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3529,7 +3528,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3808,7 +3807,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr ""
@@ -3907,7 +3906,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4029,8 +4028,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
@@ -4441,108 +4440,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4550,434 +4553,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -4986,350 +4989,350 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5337,28 +5340,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5368,76 +5371,76 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5445,59 +5448,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5518,82 +5521,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5613,21 +5616,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5689,7 +5692,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -5841,25 +5844,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr ""
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr ""
@@ -6519,18 +6522,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6728,15 +6730,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6829,7 +6823,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7180,7 +7174,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7277,10 +7271,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7339,7 +7333,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7375,8 +7369,8 @@ msgid "Edit event"
msgstr ""
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7426,7 +7420,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7480,7 +7474,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7551,57 +7545,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -7776,7 +7770,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -7873,12 +7867,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
-msgstr ""
+msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -7924,7 +7918,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -7933,11 +7927,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8023,12 +8017,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8036,34 +8030,34 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr ""
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8071,71 +8065,71 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr ""
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr ""
@@ -8257,11 +8251,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8271,8 +8265,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8422,16 +8416,20 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+msgid "Filter databases by name"
+msgstr ""
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr ""
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -9530,7 +9528,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -10611,37 +10609,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10650,39 +10648,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -10690,21 +10688,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -10713,7 +10711,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -10723,37 +10721,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -10761,8 +10759,8 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -10792,21 +10790,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -10926,7 +10932,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11125,45 +11131,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show all"
msgid "Showing tables"
msgstr "എല്ലാം കാണിക്കൂ"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11450,27 +11456,27 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index ab227ffa68..55b26b1b6b 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
@@ -19,11 +19,11 @@ msgid "Show all"
msgstr "Бүгдийг харах"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Хуудасны дугаар:"
@@ -37,30 +37,30 @@ msgstr ""
"таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Хайх"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -70,7 +70,7 @@ msgstr "Хайх"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Яв"
@@ -108,8 +108,8 @@ msgid "Database comment: "
msgstr "ӨС-ийн тайлбар: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Хүснэгтийн тайлбар"
@@ -120,16 +120,16 @@ msgstr "Хүснэгтийн тайлбар"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Баганын нэрс"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -137,12 +137,12 @@ msgstr "Баганын нэрс"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Төрөл"
@@ -154,9 +154,9 @@ msgstr "Төрөл"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Хоосон"
@@ -166,7 +166,7 @@ msgstr "Хоосон"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Анхдагч"
@@ -175,18 +175,18 @@ msgstr "Анхдагч"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Холбоос"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Тайлбар"
@@ -197,11 +197,11 @@ msgstr "Тайлбар"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -219,12 +219,12 @@ msgstr "Үгүй"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -234,8 +234,8 @@ msgstr "Тийм"
msgid "View dump (schema) of database"
msgstr "ӨС-ийн схем харах"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "ӨС-д хүснэгт олдсонгүй."
@@ -326,8 +326,8 @@ msgstr "Хуулагдсан ӨС руу шилжих"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -352,8 +352,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Хамааралтай схем"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -363,45 +363,44 @@ msgstr "Хамааралтай схем"
msgid "Table"
msgstr "Хүснэгт "
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Мөрүүд"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Хэмжээ"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "хэрэглэгдэж байна"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Үүсгэлт"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Сүүлийн шинэчлэл"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Сүүлийн шалгалт"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -496,13 +495,13 @@ msgstr "Хүснэгт хэрэглэх"
msgid "SQL query on database %s :"
msgstr "ӨС %s дахь SQL-асуулт:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Асуултыг илгээх"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Хандах эрхгүй"
@@ -537,8 +536,8 @@ msgstr[0] "%s олдоц(ууд) хүснэгт %s -д"
msgstr[1] "%s олдоц(ууд) хүснэгт %s -д"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Хөтлөх"
@@ -624,11 +623,11 @@ msgstr "Харц %s нь устгагдсан"
msgid "Table %s has been dropped"
msgstr "Хүснэгт %s нь устгагдлаа"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -640,7 +639,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Харц"
@@ -685,7 +684,7 @@ msgstr "Дээдхийг шалгах"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -694,17 +693,18 @@ msgid "Export"
msgstr "Гаргах"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Хэвлэхээр харах"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Хоосон"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -751,15 +751,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "ӨС"
@@ -777,7 +776,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Статус"
@@ -978,13 +977,13 @@ msgstr "Тэмдэглэл харуулах"
msgid "The bookmark has been deleted."
msgstr "Тэмдэглэгээ устгагдсан."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Файл уншигдахгүй байна"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1007,7 +1006,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Тэмдэглэл %s нь үүсгэгдлээ"
@@ -1029,8 +1028,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1159,9 +1158,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Засах"
@@ -1189,7 +1188,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Нийт"
@@ -1200,12 +1199,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1298,13 +1297,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "кБ"
@@ -1372,27 +1371,27 @@ msgid "Connections"
msgstr "Холболт"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Байт"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1439,9 +1438,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Байхгүй"
@@ -1631,7 +1630,7 @@ msgstr "SQL тайлбар"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Цаг"
@@ -2005,7 +2004,7 @@ msgstr "%d нь мөрийн буруу дугаар байна."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2023,7 +2022,7 @@ msgstr "асуултад"
msgid "Show search criteria"
msgstr "SQL асуудал харуулах"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2209,7 +2208,7 @@ msgstr "Нууц үг солих"
msgid "More"
msgstr "Да"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2318,27 +2317,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "1-р"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "2-р"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "3-р"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "4-р"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2346,37 +2345,37 @@ msgid "May"
msgstr "5-р"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "6-р"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "7-р"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "8-р"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "9-р"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "10р"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "11р"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "12р"
@@ -2425,32 +2424,32 @@ msgid "Sun"
msgstr "Ня"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Да"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Мя"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Лх"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Пү"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Ба"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Бя"
@@ -2610,11 +2609,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Үсгийн хэмжээ"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2622,47 +2621,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2676,7 +2675,7 @@ msgstr "Индекс тодорхойлогдоогүй!"
msgid "Indexes"
msgstr "Индексүүд"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2712,46 +2711,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Өгөгдлийн сангууд"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервэр"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Бүтэц"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Оруулах"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Үйлдлүүд"
@@ -2832,20 +2831,20 @@ msgstr ""
msgid "Engines"
msgstr "Хөдөлгүүрүүд"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Алдаа"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2853,7 +2852,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Сонгогдсон мөргүй"
msgstr[1] "Сонгогдсон мөргүй"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2903,54 +2902,54 @@ msgstr "%s нь уг MySQL сервэр дээр хаалттай байна."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Дагавар төлвийг харуулах"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Сэдэв %s олдсонгүй!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Буруу өгөгдлийн сан"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Хүснэгтийн буруу нэр"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2958,16 +2957,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Боломжит харагдац байхгүй байна."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "авах"
@@ -3019,7 +3018,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3060,13 +3059,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Ерөнхий хамаатай онцлог"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3077,7 +3076,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A time, range is %1$s to %2$s"
@@ -3095,7 +3094,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3108,7 +3107,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3207,77 +3206,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Шинэ индекс үүсгэх"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Шугамыг төгсгөгч"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Нийт"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3349,20 +3348,20 @@ msgstr "Сервэр сонго"
msgid "Cookies must be enabled past this point."
msgstr "Энэ газарт Cookies нээлттэй байх ёстой."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s секунд ба түүнээс их идэвхгүй байжээ, дахин нэвтэрнэ үү"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL руу нэвтэрч чадсангүй"
@@ -3406,18 +3405,18 @@ msgstr "Хүснэгт"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Өгөгдөл"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Толгой дээр"
@@ -3533,8 +3532,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-асуулт"
@@ -3544,85 +3543,85 @@ msgstr "SQL-асуулт"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL хэлэх нь: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL тайлбар"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL тайлбарлахыг орхих"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP-кодгүй"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP-код үүсгэх"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Да.дуудах"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL шалгалтыг алгасах"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL-ийг батлах"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Хөдөлгүүрүүд"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ня"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y оны %B сарын %d., %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s өдөр, %s цаг, %s минут, %s секунд"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Шинэ талбар нэмэх"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3630,7 +3629,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Эхлэл"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3639,7 +3638,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Өмнөх"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3648,7 +3647,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Цааш"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3656,45 +3655,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Төгс"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" өгөгдлийн сан руу үсрэх."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web-сервэр түлхэх хавтас"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Хэвлэх"
@@ -3786,72 +3785,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Хувьсагч"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Холбоос олдсонгүй"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3870,7 +3869,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4163,7 +4162,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Тогтнол"
@@ -4274,7 +4273,7 @@ msgstr "Label key"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-төрөл"
@@ -4404,8 +4403,8 @@ msgstr "Асуудлын үр дүнгийн үйлдэл"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4838,110 +4837,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Хүснэгтийг задлах"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4949,448 +4952,448 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Асуултын цонх"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Асуултын цонх"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Асуултын цонх"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Хүснэгтийг да.нэрлэх"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Thread засах"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Дурын хост"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5399,372 +5402,372 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "өгөгдлийн сангийн нэр"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Хүснэгтийг задлах"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Баганын тайлбарыг харуулж байна"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Хүснэгт янзлах"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Баримтжуулал"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Авто сэргээх горим"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP -ийн мэдээлэл харах"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Relational schema"
msgid "Show display direction"
msgstr "Хамааралтай схем"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Тор харуулах"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "in query"
msgid "Retain query box"
msgstr "асуултад"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5772,28 +5775,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5803,80 +5806,80 @@ msgstr ""
msgid "Password"
msgstr "Нууц үг"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Багана нэмэх/устгах"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Анхдагч"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5884,59 +5887,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5957,84 +5960,84 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV хэрэглэх нь LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
#| msgid "Database export options"
msgid "Database export options"
msgstr "ӨС гаргах сонголтууд"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV өгөгдлийг MS Excel-ээр"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6054,7 +6057,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6062,17 +6065,17 @@ msgid ""
"configured)."
msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервэрээс хариу алга"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6138,7 +6141,7 @@ msgstr "Хүснэгт үүсгэх"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Нэр"
@@ -6332,26 +6335,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "General relation features"
msgid "committed on %1$s by %2$s"
msgstr "Ерөнхий хамаатай онцлог"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "General relation features"
msgid "authored on %1$s by %2$s"
@@ -7095,18 +7098,17 @@ msgid "Display MIME types"
msgstr "Идэвхтэй MIME-төрлүүд"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Үүссэн цаг"
@@ -7319,15 +7321,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-үр дүн"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Үүсгэгч"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)."
@@ -7425,7 +7419,7 @@ msgstr "CSV оруулалтад %d мөрөнд буруу талбарын т
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Хүснэгтийн нэр"
@@ -7791,7 +7785,7 @@ msgstr "PDF-схемийн үүсгэлт"
msgid "Displaying Column Comments"
msgstr "Баганын тайлбарыг харуулж байна"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Хөтчийн өөрчлөл"
@@ -7889,10 +7883,10 @@ msgid "Variable"
msgstr "Хувьсагч"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Утга"
@@ -7951,7 +7945,7 @@ msgstr "Нууц үг бий болгох"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7991,8 +7985,8 @@ msgid "Edit event"
msgstr "Үзэгдэл"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8053,7 +8047,7 @@ msgstr "Оруулалтыг дуусгах"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8109,7 +8103,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8197,58 +8191,58 @@ msgstr "Асуултын төрөл"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Функц"
@@ -8457,7 +8451,7 @@ msgstr "Агуулгын хүснэгт"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Атрибутууд"
@@ -8566,12 +8560,12 @@ msgid "Toggle scratchboard"
msgstr "toggle scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Үл мэдэгдэх хэл: %1$s."
@@ -8619,7 +8613,7 @@ msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажил
msgid "Run SQL query/queries on database %s"
msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8630,11 +8624,11 @@ msgstr ""
msgid "Columns"
msgstr "Баганын нэрс"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
@@ -8722,12 +8716,12 @@ msgstr ""
"SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана "
"уу, %sбаримтжуулалд%s тодорхойлогдсон."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8745,7 +8739,7 @@ msgstr ""
"(\"'\") тавих шаардлагатай бол буруу ташуу зураасыг давхар хэрэглэ. (Ж: '\\"
"\\xyz' эсвэл 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8753,19 +8747,19 @@ msgstr ""
"Анхдагч утгаар энэ тогтнолыг ашиглан ташуу зураас, хашилтгүй ганц утга "
"оруулна уу: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Индекс"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Багана нэмэх/устгах"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8774,11 +8768,11 @@ msgstr ""
"Боломжтой өөрчлөлийн сонголтуудын жагсаалт ба тэдгээр MIME-төрлийн "
"өөрчлөлүүдийн тулд, %sөөрчлөлийн тайлбар%s -д дарах"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Өөрчлөлийн сонголтууд"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8789,79 +8783,79 @@ msgstr ""
"та буруу ташуу зургаас эсвэл дан хашилт тавихыг хүсвэл буруу ташуу зураасыг "
"өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Байхгүй"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Үндсэн"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Бүтэнбичвэр"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s-ы дараа"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s талбар(ууд) нэмэх"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Та багадаа нэг талбар нэм."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Агуулах хөдөлгүүр"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Оператор"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Хайх"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9048,13 +9042,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9064,8 +9058,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP архив дотор файл байхгүй байна!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ZIP архивт байгаа алдаа:"
@@ -9247,20 +9241,26 @@ msgstr ""
msgid "No databases"
msgstr "ӨС байхгүй"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "хүснэгтийн нэр"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "хүснэгтийн нэр"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Хүснэгт үүсгэх"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Өгөгдлийн сан сонго"
@@ -10442,7 +10442,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Баримтжуулал"
@@ -11605,37 +11605,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11644,39 +11644,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11684,21 +11684,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11707,7 +11707,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11717,37 +11717,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11757,8 +11757,8 @@ msgstr ""
msgid "Wrong data"
msgstr "ӨС байхгүй"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11792,21 +11792,29 @@ msgstr "SQL асуудал харуулах"
msgid "Validated SQL"
msgstr "SQL-ийг батлах"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-үр дүн"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Үүсгэгч"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Хүснэгт `%s`-ийн индекс асуудалтай"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Хаяг"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11942,7 +11950,7 @@ msgstr "Утга"
msgid "Table %s already exists!"
msgstr "Хүснэгт %s нь оршин байна!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -12160,45 +12168,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Үнэн зөв өгөгдлийг шалгах:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Хүснэгтүүдийг харуулах"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Ашиглалтын зай"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Ашиглалт"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Эффекттэй"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Мөрийн статистик"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "динамик"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Мөрийн урт"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Мөрийн хэмжээ "
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12508,31 +12516,31 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "in query"
msgid "Additional search criteria"
msgstr "асуултад"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/ms.po b/po/ms.po
index da91910c56..374e350837 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,15 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-03-12 09:17+0100\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:17+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: malay \n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -19,11 +20,11 @@ msgid "Show all"
msgstr "Papar semua"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Muka Surat:"
@@ -35,30 +36,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Cari"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -68,7 +69,7 @@ msgstr "Cari"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Pergi"
@@ -109,8 +110,8 @@ msgid "Database comment: "
msgstr "Komen jadual"
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komen jadual"
@@ -121,16 +122,16 @@ msgstr "Komen jadual"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Nama Kolum"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +139,12 @@ msgstr "Nama Kolum"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Jenis"
@@ -155,9 +156,9 @@ msgstr "Jenis"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +168,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Asal"
@@ -176,18 +177,18 @@ msgstr "Asal"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Pautan ke"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komen"
@@ -198,11 +199,11 @@ msgstr "Komen"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +221,12 @@ msgstr "Tidak"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +236,8 @@ msgstr "Ya"
msgid "View dump (schema) of database"
msgstr "Lihat longgokan (skema) pangkalan data"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Tiada jadual dijumpai pada pangkalan data."
@@ -326,8 +327,8 @@ msgstr "Tukar kepada pengkalan data yang di salin"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -352,8 +353,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Skema Hubungan"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -363,46 +364,45 @@ msgstr "Skema Hubungan"
msgid "Table"
msgstr "Jadual"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Baris"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Saiz"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "sedang digunakan"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
#, fuzzy
msgid "Creation"
msgstr "Cipta"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr ""
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Semakan Terakhir"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -496,13 +496,13 @@ msgstr "Guna Jadual"
msgid "SQL query on database %s :"
msgstr "SQL- kueri pada pangkalan data %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Hantar Kueri"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Akses dinafikan"
@@ -537,8 +537,8 @@ msgstr[0] "%s padanan di dalam jadual %s "
msgstr[1] "%s padanan di dalam jadual %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Lungsur"
@@ -624,11 +624,11 @@ msgstr "Medan %s telah digugurkan"
msgid "Table %s has been dropped"
msgstr "Jadual %s telah digugurkan"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -640,7 +640,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -685,7 +685,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -694,17 +694,18 @@ msgid "Export"
msgstr "Eksport"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Paparan Cetak"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Kosong"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -751,15 +752,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Pangkalan Data"
@@ -778,7 +778,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -981,13 +981,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "TandaBuku telah dipadam."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1010,7 +1010,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1032,8 +1032,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1154,9 +1154,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Ubah"
@@ -1183,7 +1183,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Jumlah"
@@ -1194,12 +1194,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1286,13 +1286,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1356,27 +1356,27 @@ msgid "Connections"
msgstr "Hubungan"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1421,9 +1421,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Tiada"
@@ -1608,7 +1608,7 @@ msgstr "Terangkan Kod SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Masa"
@@ -1963,7 +1963,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1979,7 +1979,7 @@ msgstr "kueri-SQL"
msgid "Show search criteria"
msgstr "kueri-SQL"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2165,7 +2165,7 @@ msgstr "Ubah Katalaluan"
msgid "More"
msgstr "Isn"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2273,27 +2273,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mac"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2301,37 +2301,37 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Ogos"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dis"
@@ -2380,32 +2380,32 @@ msgid "Sun"
msgstr "Aha"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Isn"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Kha"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sab"
@@ -2564,11 +2564,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2576,47 +2576,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2630,7 +2630,7 @@ msgstr "Tiada indeks ditafrifkan!"
msgid "Indexes"
msgstr "Indeks"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2667,46 +2667,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "pangkalan data"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Pelayan"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Selit"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operasi"
@@ -2788,27 +2788,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Ralat"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2852,51 +2852,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Cari di pangkalan data"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "Cari di pangkalan data"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Jadual %s telah ditukarnama ke %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2904,16 +2904,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2965,7 +2965,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3006,12 +3006,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Versi Pelayan"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3022,7 +3022,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Versi Pelayan"
@@ -3039,7 +3039,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3052,7 +3052,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3150,77 +3150,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Cipta indeks baru"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Baris ditamatkan oleh"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Jumlah"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3289,20 +3289,20 @@ msgstr "Pilihan Pelayan"
msgid "Cookies must be enabled past this point."
msgstr "Cecikut mestilah dihidupkan ketika ini."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Tidak boleh log-masuk ke server MySQL"
@@ -3346,18 +3346,18 @@ msgstr "Jadual-jadual"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Melebihi"
@@ -3467,8 +3467,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "kueri-SQL"
@@ -3478,81 +3478,81 @@ msgstr "kueri-SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL berkata: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Terangkan Kod SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Tanpa Kod PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Cipta Kod PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Melangkau Pengesahan SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Mengesahkan SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Aha"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s hari, %s jam, %s minit dan %s saat"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3560,7 +3560,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Mula"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3569,7 +3569,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Terdahulu"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3578,7 +3578,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Berikut"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3586,45 +3586,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Tamat"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "direktori muatnaik pelayan-web"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Cetak"
@@ -3717,72 +3717,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Pembolehubah"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Pautan tidak dijumpai"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3801,7 +3801,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4088,7 +4088,7 @@ msgid "Character set of the file"
msgstr "Fail bagi set Aksara:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4197,7 +4197,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4329,8 +4329,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "data CSV"
@@ -4761,110 +4761,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analyze table"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4872,444 +4876,444 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Alter table order by"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Tukarnama jadual ke"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Hubungan"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Sebarang hos"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Tiada Jadual"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Tiada pangkalan data"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5318,370 +5322,370 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Pangkalan Data"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analyze table"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Baiki jadual"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Pilihan Pelayan"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Memaparkan Komen Kolum"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Penyataan"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "Versi Pelayan"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Papar maklumat PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Statistik pangkalan data"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Papar jadual"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Papar grid"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "kueri-SQL"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Statistik Baris"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5689,28 +5693,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5720,81 +5724,81 @@ msgstr ""
msgid "Password"
msgstr "Katalaluan"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Namapengguna:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Tambah/Padam Kolum Medan"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Asal"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5802,59 +5806,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5875,83 +5879,83 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
msgid "Database export options"
msgstr "Statistik pangkalan data"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV untuk sata MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5971,21 +5975,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6050,7 +6054,7 @@ msgstr "Cipta Halaman baru"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nama"
@@ -6234,25 +6238,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Versi Pelayan"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Versi Pelayan"
@@ -6961,18 +6965,17 @@ msgid "Display MIME types"
msgstr "Paparkan Ciri-ciri"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Hos"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Masa dijana"
@@ -7180,15 +7183,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Hasil SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Dijana oleh"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)"
@@ -7283,7 +7278,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7643,7 +7638,7 @@ msgstr "Ciptaan bagi PDF"
msgid "Displaying Column Comments"
msgstr "Memaparkan Komen Kolum"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7741,10 +7736,10 @@ msgid "Variable"
msgstr "Pembolehubah"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Nilai"
@@ -7804,7 +7799,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7842,8 +7837,8 @@ msgid "Edit event"
msgstr "Hantar"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7903,7 +7898,7 @@ msgstr "Kemasukkan Selesai"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7958,7 +7953,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8039,57 +8034,57 @@ msgstr "Jenis Kueri"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Fungsi"
@@ -8287,7 +8282,7 @@ msgstr "Kandungan"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atribut"
@@ -8392,12 +8387,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8447,7 +8442,7 @@ msgstr "Laksana kueri SQL pada pangkalan data %s"
msgid "Run SQL query/queries on database %s"
msgstr "Laksana kueri SQL pada pangkalan data %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8458,11 +8453,11 @@ msgstr ""
msgid "Columns"
msgstr "Nama Kolum"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "andabuku kueri-SQL ini"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8480,7 +8475,7 @@ msgstr ""
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Papar kueri ini di sini lagi "
+msgstr "Papar kueri ini di sini lagi"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8562,12 +8557,12 @@ msgstr ""
"Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang "
"sambungan php seperti yang tercatit di %sdocumentation%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8585,36 +8580,36 @@ msgstr ""
"backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, "
"backslashes kan ia (cth '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Tambah/Padam Kolum Medan"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
#, fuzzy
msgid ""
"Please enter the values for transformation options using this format: 'a', "
@@ -8627,79 +8622,79 @@ msgstr ""
"backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, "
"backslashes kan ia (cth '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Tiada"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Utama"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Tekspenuh"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Selepas %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Tambah medan baru"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "Operasi"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Cari"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8827,11 +8822,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8841,8 +8836,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9016,19 +9011,25 @@ msgstr ""
msgid "No databases"
msgstr "Tiada pangkalan data"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Alter table order by"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Alter table order by"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Cipta Halaman baru"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Sila pilih pangkalan data"
@@ -9629,7 +9630,7 @@ msgstr ""
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris "
+msgstr "Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris"
#: server_privileges.php:711
msgid "Administration"
@@ -10193,7 +10194,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Penyataan"
@@ -11305,37 +11306,37 @@ msgstr ""
msgid "Show form"
msgstr "Papar warna"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11344,39 +11345,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11384,21 +11385,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11407,7 +11408,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11417,37 +11418,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11457,8 +11458,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Tiada pangkalan data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11492,21 +11493,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Mengesahkan SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Hasil SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Dijana oleh"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Label"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11639,7 +11648,7 @@ msgstr "Nilai"
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Jadual %s telah digugurkan"
@@ -11855,45 +11864,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Semak integriti rujukan:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Papar jadual"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Penggunaan ruang"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Penggunaan"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Berkesan"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistik Baris"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamik"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Panjang baris"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Saiz baris "
+msgstr "Saiz baris"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12197,30 +12206,30 @@ msgstr ""
msgid "Create version"
msgstr "Versi Pelayan"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "kueri-SQL"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index 4d5c030a86..be3deff21f 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-04-08 05:59+0200\n"
-"Last-Translator: Asle Ommundsen \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:22+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: norwegian \n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Vis alle"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Sidenummer:"
@@ -38,30 +38,30 @@ msgstr ""
"din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsårsaker."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Søk"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "Søk"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Utfør"
@@ -111,8 +111,8 @@ msgid "Database comment: "
msgstr "Database kommentar: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tabellkommentarer"
@@ -123,14 +123,14 @@ msgstr "Tabellkommentarer"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Kolonne"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "Kolonne"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Type"
@@ -155,9 +155,9 @@ msgstr "Type"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +167,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Standard"
@@ -176,18 +176,18 @@ msgstr "Standard"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Linker til"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Kommentarer"
@@ -198,11 +198,11 @@ msgstr "Kommentarer"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "Nei"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "Ja"
msgid "View dump (schema) of database"
msgstr "Vis dump (skjema) av database"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Ingen tabeller i databasen."
@@ -323,8 +323,8 @@ msgstr "Bytt til kopiert database"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Rediger eller eksporter relasjonsskjema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Rediger eller eksporter relasjonsskjema"
msgid "Table"
msgstr "Tabell"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rader"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Størrelse"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "i bruk"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Opprettet"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Sist oppdatert"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Sist kontrollert"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -481,13 +480,13 @@ msgstr "Bruk tabeller"
msgid "SQL query on database %s :"
msgstr "SQL-spørring i database %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Kjør spørring"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Ingen tilgang"
@@ -523,8 +522,8 @@ msgstr[0] "%s treff i tabell %s "
msgstr[1] "%s treff i tabell %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Se på"
@@ -600,11 +599,11 @@ msgstr "Visningen %s har blitt slettet"
msgid "Table %s has been dropped"
msgstr "Tabellen %s har blitt slettet"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Overvåkning er aktiv."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Overvåkning er ikke aktiv."
@@ -616,7 +615,7 @@ msgid ""
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vis"
@@ -661,7 +660,7 @@ msgstr "Merk overheng"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -670,17 +669,18 @@ msgid "Export"
msgstr "Eksporter"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Utskriftsvennlig forhåndsvisning"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Tøm"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -723,15 +723,14 @@ msgid "Tracked tables"
msgstr "Overvåkede tabeller"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Database"
@@ -749,7 +748,7 @@ msgstr "Oppdatert"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -940,13 +939,13 @@ msgstr "Vis bokmerke"
msgid "The bookmark has been deleted."
msgstr "Bokmerket har blitt slettet."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Fila kunne ikke leses"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -976,7 +975,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Bokmerke %s opprettet"
@@ -1003,8 +1002,8 @@ msgstr ""
"at phpMyAdmin ikke vil være istand til å fullføre importeringen uten at du "
"øker php tidsgrensen."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1114,9 +1113,9 @@ msgid "Close"
msgstr "Lukk"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Rediger"
@@ -1140,7 +1139,7 @@ msgstr "Statistikkdata"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Totalt"
@@ -1151,12 +1150,12 @@ msgid "Other"
msgstr "Annet"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1235,13 +1234,13 @@ msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1299,27 +1298,27 @@ msgid "Connections"
msgstr "tilkoblinger"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1359,9 +1358,9 @@ msgstr "Legg minst én variabel til serien"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Ingen"
@@ -1560,7 +1559,7 @@ msgstr "Forklar SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tid"
@@ -1919,7 +1918,7 @@ msgstr "%d er ikke et gyldig radnummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1933,7 +1932,7 @@ msgstr "Skjul søkekriterier"
msgid "Show search criteria"
msgstr "Vis søkekriterier"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2032,7 +2031,7 @@ msgstr ""
#: js/messages.php:348
msgid "Add an option for column "
-msgstr "Legg til valg for kolonne"
+msgstr "Legg til valg for kolonne "
#: js/messages.php:351
msgid "Press escape to cancel editing"
@@ -2115,7 +2114,7 @@ msgstr "Endre passord"
msgid "More"
msgstr "Mer"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2208,63 +2207,63 @@ msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Des"
@@ -2305,32 +2304,32 @@ msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Lør"
@@ -2472,11 +2471,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Fontstørrelse"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2484,13 +2483,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Opplastingsfila er større enn upload_max_filesize direktivet definert i php."
"ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2498,38 +2497,38 @@ msgstr ""
"Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i "
"HTML-skjemaet."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Opplastingsfila ble bare delvis opplastet."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Mangler en midlertidig mappe."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Klarte ikke å skrive fila til harddisken."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Filopplasting stoppet av utvidelse."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Ukjent feil oppstod under filopplastingen."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
"Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2543,7 +2542,7 @@ msgstr "Ingen indeks definert!"
msgid "Indexes"
msgstr "Indekser"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2581,46 +2580,46 @@ msgstr ""
"Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne "
"fjernes."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Databaser"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Tjener"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Sett inn"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operasjoner"
@@ -2701,27 +2700,27 @@ msgstr ""
msgid "Engines"
msgstr "Motorer"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Feil"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rad berørt."
msgstr[1] "%1$d rader berørt."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rader slettet."
msgstr[1] "%1$d rader slettet."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2773,55 +2772,55 @@ msgstr "%s har blitt dekativert for denne MySQL tjeneren."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Vis slavestatus"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Kildedatabase"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Stilen %s ble ikke funnet!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Ugylding database"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Ugylding tabellnavn"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabellen %s har fått nytt navn %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2829,16 +2828,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Ingen gyldig bildesti for stilen %s ble funnet!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Ingen forhandsvisning tilgjengelig."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "velg"
@@ -2890,7 +2889,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2931,13 +2930,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Opprett versjon %s av %s.%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2948,7 +2947,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2966,7 +2965,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2979,7 +2978,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3078,77 +3077,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Lag en ny indeks"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Linjestreng"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Antall loggfiler"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3222,21 +3221,21 @@ msgstr "Tjenervalg"
msgid "Cookies must be enabled past this point."
msgstr "Cookies må være slått på forbi dette punkt."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Innlogging uten passord er forbudt av konfigurasjonen (see AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Ingen aktivitet på %s sekunder eller mer, du må logge inn på nytt"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Kan ikke logge inn til MySQL tjeneren"
@@ -3282,18 +3281,18 @@ msgstr "Tabeller"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overheng"
@@ -3404,8 +3403,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-spørring"
@@ -3415,83 +3414,83 @@ msgstr "SQL-spørring"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Kunne ikke koble til SQL validerer!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Forklar SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Ikke forklar SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "uten PHP kode"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Lag PHP kode"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Oppdater"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Ikke teste SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Test SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Inline redigering av denne spørringa"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilering"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Søn"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B, %Y %H:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dager, %s timer, %s minutter og %s sekunder"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutiner"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3499,7 +3498,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Start"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3508,7 +3507,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Forrige"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3517,7 +3516,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Neste"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3525,46 +3524,46 @@ msgctxt "Last page"
msgid "End"
msgstr "Slutt"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Hopp til databasen "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Klikk for å velge"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Bla gjennom datamaskinen:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Merk fra opplastingskatalogen på vevtjeneren %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Katalogen du anga for opplasting kan ikke nåes"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Det er ingen filer å laste opp"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Skriv ut"
@@ -3648,68 +3647,68 @@ msgstr "begge ovenforstående"
msgid "neither of the above"
msgstr "ingen av de overstående"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Ikke et positivt nummer"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Ikke et ikke-negativt nummer"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Ikke et gyldig portnummer"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Ugyldig verdi"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Verdien må være lik eller mindre enn %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Mangler data for %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "ikke tilgjengelig"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" trenger %s tillegget"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "import vil ikke fungere, mangler funksjon (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "Eksport vil ikke fungere, mangler funksjon (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL Validator er avslått"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP tillegg ble ikke funnet"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maksimum %s"
@@ -3729,7 +3728,7 @@ msgid "Set value: %s"
msgstr "Sett verdi: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Gjennopprett standard verdi"
@@ -4032,7 +4031,7 @@ msgid "Character set of the file"
msgstr "Filas tegnsett"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4131,7 +4130,7 @@ msgstr "Merkelappnøkkel"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-type"
@@ -4255,8 +4254,8 @@ msgstr "Tilpass standardinstillinger"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV-data"
@@ -4700,14 +4699,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Vis minimum antall tabeller i filterboks"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Vis minimum antall tabeller i filterboks"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Streng som skiller databaser i forskellige trenivåer"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Database treskilletegn"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4715,39 +4720,39 @@ msgstr ""
"Kun i hurtigversjon; vis databaser i et tre (bestemmes av skilletegnet "
"definert nedenfor)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Vis databaser i et tre"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Slå av denne hvis du ønsker å kunne se alle databaser på en gang"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Bruk hurtigversjon"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maks tabelltredybde"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Streng som skiller tabeller i forskellige trenivåer"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Tabelltreseparator"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL hvor logoen i navigasjonsrammen skal peke til"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo link URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4755,42 +4760,42 @@ msgstr ""
"Åpne den linkede siden i hovedvinduet ([kbd]main[/kbd]) eller i en ny en "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo link mål"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Uthev tjener under musmarkøren"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Aktiver utheving"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Maks antall tabeller vist i tabellista"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "Ikke overvåkede tabeller"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
#, fuzzy
#| msgid "imum number of characters used when a SQL query is displayed"
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "Maks antall tegn brukt når en SQL spørring er framvist"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Begrens kolonne tegn"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4800,11 +4805,11 @@ msgstr ""
"ellers bare for den aktuelle tjeneren. Sett denne til FALSE gjør det lett å "
"glemme å logge ut fra andre tjenere når du bruker flere."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Slett alle cookies ved utlogging"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4812,11 +4817,11 @@ msgstr ""
"Definerer om forrige innlogging skal husker eller ikke i cookie "
"autentiseringsmodus"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Husk brukernavn"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4828,48 +4833,48 @@ msgstr ""
"sessjon, det vil si at den vil bli slettet så fort du lukker "
"nettleservinduet. Dette er anbefalt for ikke sikre brukermiljøer."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Innloggings cookie lagring"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Definer hvor lenge (i sekunder) en innloggings cookie skal være gyldig"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Innloggings cookie gyldighet"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Dobbel størrelse i tekstområde for LONGTEXT kolonner"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Større tekstområde for LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Maks antall tegn brukt når en SQL spørring er framvist"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Maks lengde SQL"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Brukere kan ikke angi en høyere verdi"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "Maks antall databases vist i venstre ramme og databaselista"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Maks antall databaser"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4879,19 +4884,19 @@ msgstr ""
"inneholder flere rader vil "Forrige" og "Neste" linker "
"bli vist."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maks antall rader som kan framvises"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Maks antall tabeller vist i tabellista"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Maks antall tabeller"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4899,11 +4904,11 @@ msgstr ""
"Slå av forvalgt advarsel som blir vist hvis mcrypt mangler ved "
"informasjonskapsel autentisering"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt advarsel"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4911,45 +4916,45 @@ msgstr ""
"Maks antal byte et skript har lov til å bruke, f.eks. [kbd]32M[/kbd] ([kbd]0"
"[/kbd] for ingen begrensning)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Minnetak"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
#, fuzzy
#| msgid "These are Edit, Inline edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links"
msgstr "Dette er rediger, innsmettet rediger, kopier og slettede lenker"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Bruk naturlig rekkefølge for å sortere tabell- og databasenavn"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Normal rekkefølge"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Bruk bare ikoner, bare tekst eller begge deler"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Ikonnavigasjonsmeny"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "Bruk GZip utbuffring for økt hastighet i HTTP overføringer"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip utbuffring"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4957,42 +4962,42 @@ msgstr ""
"[kbd]SMART[/kbd] - dvs. synkende rekkefølge for felter av typen TIME, DATE, "
"DATETIME og TIMESTAMP, ellers stigende rekkefølge"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Standard sorteringsrekkefølge"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Bruk vedvarende forbindelser til MySQL databasen"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Vedvarende forbindelser"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Ikoniske tabelloperasjoner"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Ikke tillat BLOB eller BLOB og BINARY kolonner å bli redigert"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Beskytt binære kolonner"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
#, fuzzy
#| msgid ""
#| " if you want DB-based query history (requires pmadb). If disabled, s "
@@ -5005,120 +5010,120 @@ msgstr ""
"Slå på hvis du ønsker DB-basert spørringshistorie (trenger pmadb). Hvis "
"avslått, vil JS-rutiner vise spørringshistorien (tapt ved lukking av vindu)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Permanent spørringshistorie"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Hvor mange spørringer lagres"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Spørringshistorielengde"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Fanen som vises når et nytt spørringsvindu åpnes"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Standard spørringsvindufane"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Høyde på spørringsvindu"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Spørringsvindu"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Bredde på spørringsvindu"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Velg hvilken funksjon som vil bli brukt for karaktertegnsettskonverteringer"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Rekodingsmotor"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Endre tabellens navn"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Gjenta topptekst"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Mappe for eksporter kan lagres på tjeneren"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Lagringsmappe"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "La stå tom hvis ikke brukt"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Rekkefølge for vertsautentisering"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "La stå tom for standard"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Vertsautentiseringsregler"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Tillat innlogging uten passord"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Tillat innlogging som root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP Basic Auth Realm navn for visning ved bruk av HTTP Auth"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5127,19 +5132,19 @@ msgstr ""
"Stien til konfigfila for [a@http://swekey.com]SweKey hardware authentication"
"[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey config fil"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Autentiseringsmetode som skal brukes"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Autentiseringstype"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5147,11 +5152,11 @@ msgstr ""
"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bokmerke[/a]"
"støtte, anbefalt: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Bokmerketabell"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5159,31 +5164,31 @@ msgstr ""
"La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Kolonneinformasjonstabell"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Komprimer tilkoblingen til MySQL tjeneren"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Komprimer tilkobling"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Hvordan koble til tjener, behold tcp hvis usikker"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Tilkoblingstype"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Kontrollbrukerpassord"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5192,42 +5197,42 @@ msgstr ""
"informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/controluser]"
"wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Kontrollbruker"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Kontrollbruker"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Tell tabeller ved visning av databaseliste"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Tell tabeller"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
"La stå tom for ingen Designer støtte, anbefalt: [kbd]designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Designertabell"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5235,70 +5240,70 @@ msgstr ""
"Mer informasjon på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Slå av bruk av INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "Hvilken PHP modul som skal brukes, bruk mysqli hvis støttet"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Bruk PHP modul"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Skjul databaser som matcher regular expression (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Skul databaser"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL spørringshistorietabell"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Vertsnavn hvor MySQL tjeneren kjører"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Tjenervertsnavn"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Logg ut URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Maks antall tabeller vist i tabellista"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Forsøk å koble til uten passord"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Koble til uten passord"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
#, fuzzy
#| msgid ""
#| "n use MySQL wildcard characters (% and _), escape them if you want use ir "
@@ -5313,29 +5318,29 @@ msgstr ""
"Du kan bruke MySQL jokertegn (% and _), escape dem hvis du ønsker å bruke "
"dem direkte, f.eks. bruk 'my\\_db' og ikke 'my_db'"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Vis kun opplistede databaser"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "La stå tom om du ikke skal bruke config autentisering"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Passord for config autentisering"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF schema: sidetabell"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5345,19 +5350,19 @@ msgstr ""
"wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for komplett informasjon. La stå "
"blank for å slå av. Anbefalt: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Ddatabasenavn"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "Porten som MySQL tjeneren lytter på, la stå tom for standard verdi"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Tjenerport"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -5367,13 +5372,13 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Husk brukernavn"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5381,19 +5386,19 @@ msgstr ""
"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/relation]relasjonslink"
"[/a]støtte, anbefalt: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relasjonstabell"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL kommando for å hente liste over databaser"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES kommando"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5401,41 +5406,41 @@ msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/"
"a] for et eksempel"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Signon sesjonsnavn"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Signon URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "Sokkel som MySQL tjeneren lytter på, la stå tom for standard verdi"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Tjenersokkel"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Slå på SSL for tilkobling til MySQL tjener"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Bruk SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF schema: tabellkoordinater"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5443,11 +5448,11 @@ msgstr ""
"Tabell for beskrivelse av visningskolonner, la stå tom for ingen støtte; "
"anbefalt: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Visningskolonnetabell"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -5457,13 +5462,13 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmenter tabell"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5471,11 +5476,11 @@ msgstr ""
"Om en DROP DATABASE IF EXISTS spørring skal bli lagt til som første linje i "
"loggen når oppretter en database."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Legg til DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5483,11 +5488,11 @@ msgstr ""
"Om en DROP TABLE IF EXISTS spørring vil bli lagt til som første linje til "
"loggen når oppretter en tabell."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Legg til DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5495,31 +5500,31 @@ msgstr ""
"Om en DROP VIEW IF EXISTS spørring vil bli lagt til som første linje i "
"loggen når opprettes en visning."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Legg til DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definerer lista med spørringer autoopprettinga bruker for nye versjoner."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Spørringer som skal spores"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL spørringssporingstabell"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5527,11 +5532,11 @@ msgstr ""
"Om sporingsmekanismen oppretter versjoner for tabeller og visninger "
"automatisk."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Automatisk opprette versjoner"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
@@ -5541,15 +5546,15 @@ msgid ""
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Bruker for config autentisering"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5557,19 +5562,19 @@ msgstr ""
"En brukervennlig beskrivelse av denne tjeneren. La stå tom for visning av "
"vertsnavn istedet."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Fult navn for denne tjeneren"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Avgjør om en bruker får en "vis alle (rader)" knapp"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Tillat visning av alle rader"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5579,85 +5584,85 @@ msgstr ""
"autentiseringsmodus siden passordet er hardkodet i konfigurasjonsfila; dette "
"begrenser ikke muligheten til å utføre samme kommando direkte"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Vis passordendringsskjema"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Vis opprett database skjema"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Vis versjoner"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Vis masterstatus"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "Standard visningsretning"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Vis felttyper"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Vis funksjonsfelter i rediger/sett inn modus"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Vis funksjonsfelter"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Vis rutenett"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5665,42 +5670,42 @@ msgstr ""
"Vis link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"resultat"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Vis phpinfo() link"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Vis detaljert MySQL tjenerinformasjon"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Definer om SQL spørringer generert av phpMyAdmin skal vises"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Vis SQL spørringer"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Skjul spørringsboks"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "Tillat visning av database og tabellstatistikk (f.eks. lagringsbruk)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Vis statistikk"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5708,11 +5713,11 @@ msgstr ""
"Hvis verktøytips er påslått og en databasekommentar er definert vil denne "
"bytte om på kommentar og det reelle navnet"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Vis databasekommentaren istedet for dens navn"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5724,29 +5729,29 @@ msgstr ""
"direktivet, så bare mappen et kalt lik aliaset, selve tabellnavnet forblir "
"uendret"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Vis tabellkommentar istedet for dens navn"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Vis tabellkommentarer i verktøytips"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Merk tabeller i bruk og gjør det mulig å vise databaser med låste tabeller"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Ignorer låste tabeller"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5756,80 +5761,80 @@ msgstr ""
msgid "Password"
msgstr "Passord"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Brukernavn"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR textarea kolonner"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR textarea rader"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Forvalgt tittel"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Navn på nettleser når en tjener er valgt"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5841,53 +5846,53 @@ msgstr ""
"Forwarded-For) header som kommer fra mellomlager 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Liste over godkjente mellomlager for IP allow/deny"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Mappe på tjeneren hvor du kan laste opp filer for import"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Opplastingsmappe"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Gjør det mulig å søke i hele databasen"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Bruk databasesøk"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Sjekk for siste versjon"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Versjonskontroll"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5895,7 +5900,7 @@ msgstr ""
"Slå på [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-"
"komprimering for import og eksportoperasjoner"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5920,84 +5925,84 @@ msgid "Signon authentication"
msgstr "Rekkefølge for vertsautentisering"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV med LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document regneark"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Egendefinert"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Databaseeksportinnstillinger"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV for MS Excel data"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document tekst"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "Kunne ikke koble til MySQL tjener"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Kunne ikke koble til MySQL tjener"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Blankt brukernavn for bruk av config autentiseringsmetoden"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Tom signon sessjonsnavn ved bruk av signon autentiseringsmetode"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Tom signon URL ved bruk av signon autentiseringsmetode"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Blankt phpMyAdmin kontrollbruker for bruk av pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Blankt phpMyAdmin kontrollbrukerpassord for bruk av pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Ugyldig IP addresse: %s"
@@ -6017,7 +6022,7 @@ msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6025,17 +6030,17 @@ msgid ""
"configured)."
msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Tjeneren svarer ikke"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detaljer..."
@@ -6100,7 +6105,7 @@ msgstr "Opprett tabell"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Navn"
@@ -6269,26 +6274,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Kodingskonvertering"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "Opprett versjon %s av %s.%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6540,7 +6545,7 @@ msgstr "i spørring"
#: libraries/display_tbl.lib.php:2838
msgid "Showing rows"
-msgstr "Viser rader "
+msgstr "Viser rader"
#: libraries/display_tbl.lib.php:2848
msgid "total"
@@ -7051,18 +7056,17 @@ msgid "Display MIME types"
msgstr "Vis MIME-typer"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Vert"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Generert den"
@@ -7275,15 +7279,7 @@ msgstr "Ingen data funnet for graf."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-resultat"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generert av"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)."
@@ -7358,7 +7354,7 @@ msgstr ""
#: libraries/import/csv.php:94
msgid "Column names: "
-msgstr "Kolonnenavn:"
+msgstr "Kolonnenavn: "
#: libraries/import/csv.php:116 libraries/import/csv.php:129
#: libraries/import/csv.php:134 libraries/import/csv.php:139
@@ -7387,7 +7383,7 @@ msgstr "Ugyldig antall kolonner i CSV importen i linje %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Tabellnavn"
@@ -7523,7 +7519,7 @@ msgstr "Tegnsett"
#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
#: tbl_change.php:612
msgid "Binary"
-msgstr "Binær "
+msgstr "Binær"
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
@@ -7761,7 +7757,7 @@ msgstr "Lag PDF-dokumenter"
msgid "Displaying Column Comments"
msgstr "Vis kolonnekommentarer"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Nettvisertransformasjon"
@@ -7866,10 +7862,10 @@ msgid "Variable"
msgstr "Variabler"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Verdi"
@@ -7932,7 +7928,7 @@ msgstr "Generer passord"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, fuzzy, php-format
@@ -7973,8 +7969,8 @@ msgid "Edit event"
msgstr "Rediger tjener"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Error in Processing Request"
@@ -8037,7 +8033,7 @@ msgstr "Komplette inserts"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8093,7 +8089,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
@@ -8183,60 +8179,60 @@ msgstr "Sikkerhet"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Tillater utføring av lagrede rutiner."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Rutiner"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funksjon"
@@ -8453,7 +8449,7 @@ msgstr "Innholdsfortegnelse"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attributter"
@@ -8556,12 +8552,12 @@ msgid "Toggle scratchboard"
msgstr "slå av/på kladdevindu"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ukjent språk: %1$s."
@@ -8607,7 +8603,7 @@ msgstr "Kjør SQL spørring/spørringer på tjener %s"
msgid "Run SQL query/queries on database %s"
msgstr "Kjør SQL spørring/spørringer mot databasen %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Fjern"
@@ -8616,11 +8612,11 @@ msgstr "Fjern"
msgid "Columns"
msgstr "Kolonner"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Lagre denne SQL-spørringen"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "La alle brukere ha adgang til dette bokmerket"
@@ -8638,7 +8634,7 @@ msgstr "Skilletegn"
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Vis denne spørring her igjen "
+msgstr "Vis denne spørring her igjen"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8721,13 +8717,13 @@ msgstr ""
"SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de "
"nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "Overvåkning av %s.%s er aktivert."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8739,7 +8735,7 @@ msgstr ""
"\") eller en enkel apostrof (\"'\") blant disse verdiene, skriv en skråstrek "
"foran (eks. '\\\\xyz' eller 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8747,19 +8743,19 @@ msgstr ""
"Sett inn en enkelt verdi for standard verdier uten skråstrek, anførselstegn "
"eller annen "escaping" med dette formatet: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Fjern kolonne(r)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8768,11 +8764,11 @@ msgstr ""
"For en liste over tilgjengelige transformasjonsvalg, klikk på "
"%stransformasjonsbeskrivelser%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Transformasjonsvalg"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8784,74 +8780,74 @@ msgstr ""
"(\"'\") blant disse verdiene så sett en skråstrek foran (eks. '\\\\xyz' "
"eller 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Ingen"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Som definert:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primær"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltekst"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Etter %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Legg til %s kolonne(r)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Du må sette inn minst en kolonne."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Lagringsmotor"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Partisjonsdefinisjon"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Søk"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9019,11 +9015,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Kunne ikke lagre konfigurasjonen"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9033,8 +9029,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Ingen filer funnet inne i ZIP arkivet!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Feil i ZIP arkivet:"
@@ -9238,18 +9234,24 @@ msgstr ""
msgid "No databases"
msgstr "Ingen databaser"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Endre tabellrekkefølge ved"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Endre tabellrekkefølge ved"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Opprett tabell"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Vennligst velg en database"
@@ -10459,7 +10461,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Endre oppstartssiden"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Oversikt"
@@ -11719,14 +11721,14 @@ msgstr "Ignorer feil"
msgid "Show form"
msgstr "Vis skjema"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Hverken URL wrapper eller CURL er tilgjengelig. Versjonskontroll er ikke "
"mulig."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11734,15 +11736,15 @@ msgstr ""
"Lesing av versjon feilet. Du er kanskje offline eller oppgraderingstjeneren "
"svarer ikke."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Mottok ugyldig versjonsstreng fra tjeneren"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Uleselig versjonsstreng"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11751,11 +11753,11 @@ msgstr ""
"Du bruker Git versjon, kjør [kbd]git pull[/kbd] :-)[br]Den siste stabile "
"versjon er %s, utgitt den %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Ingen ny stabil versjon er tilgjengelig"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, fuzzy, php-format
#| msgid ""
#| "a@?page=form&formset=features#tab_Security]option[/a] should be abled "
@@ -11776,7 +11778,7 @@ msgstr ""
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11786,7 +11788,7 @@ msgstr ""
"autentisering så nøkkelen ble generert for deg. Den brukes til å krypterer "
"cookies."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]Bzip2 compression "
@@ -11799,7 +11801,7 @@ msgstr ""
"dekomprimering[/a] trenger funksjoner (%s) som ikke er tilgjengelig på dette "
"systemet."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11808,13 +11810,13 @@ msgstr ""
"verken er tilgjengelig for alle og heller ikke kan leses eller skrives til "
"av andre brukere på tjeneren din."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, fuzzy, php-format
#| msgid "You should use SSL connections if your web server supports it"
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Du bør bruke SSL tilkobling dersom din webtjener har støtte for det"
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]GZip compression and "
@@ -11827,7 +11829,7 @@ msgstr ""
"dekomprimering[/a] trenger funksjoner (%s) som ikke er tilgjengelig på dette "
"systemet."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11835,7 +11837,7 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Security]Login cookie validity[/a] uld be "
@@ -11850,14 +11852,14 @@ msgstr ""
"kan utgjøre en sikkerhetsrisiko f.eks. ved at noen prøver å utgi seg for en "
"bruker."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, fuzzy, php-format
#| msgid ""
#| " feel this is necessary, use additional protection settings - ?"
@@ -11878,7 +11880,7 @@ msgstr ""
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, fuzzy, php-format
#| msgid ""
#| "t the [kbd]config[/kbd] authentication type and included username sword "
@@ -11899,7 +11901,7 @@ msgstr ""
"phpMyAdmin panel. Velg [a@?page=servers&mode=edit&id=%1$d#tab_Server]"
"autentiseringstype[/a] [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]Zip compression[/a] uires "
@@ -11911,7 +11913,7 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]Zip komprimering[/a] "
"trenger funksjoner (%s) som ikke er tilgjengelig på dette systemet."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, fuzzy, php-format
#| msgid ""
#| "ge=form&formset=features#tab_Import_export]Zip ompression[/requires "
@@ -11923,29 +11925,29 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]Zip dekomprimering[/a]"
"trenger funksjoner (%s) som ikke er tilgjengelig på dette systemet."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it"
msgid "You should use SSL connections if your database server supports it."
msgstr "Du bør bruke SSL tilkobling dersom din webtjener har støtte for det"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
#, fuzzy
#| msgid "You should use mysqli for performance reasons"
msgid "You should use mysqli for performance reasons."
msgstr "Du bør bruke mysqli for bedre ytelse"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Du tillater tilkobling til tjeneren uten passord."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
#, fuzzy
#| msgid "Key is too short, it should have at least 8 characters"
msgid "Key is too short, it should have at least 8 characters."
msgstr "Nøkkelen er for kort, den bør ha minst 8 tegn"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
#, fuzzy
#| msgid " should contain letters, numbers [em]and[/em] special characters"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
@@ -11957,8 +11959,8 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn"
msgid "Wrong data"
msgstr "Ingen databaser"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Se de eksterne verdiene"
@@ -11990,21 +11992,29 @@ msgstr "Viser SQL spørring"
msgid "Validated SQL"
msgstr "Validert SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-resultat"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generert av"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene i tabellen `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Navn"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabellen %1$s har blitt endrett"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12018,7 +12028,7 @@ msgstr ""
#: tbl_change.php:860
msgid "Binary - do not edit"
-msgstr "Binær - må ikke redigeres "
+msgstr "Binær - må ikke redigeres"
#: tbl_change.php:1065
msgid "Insert as new row"
@@ -12145,7 +12155,7 @@ msgstr "Verdi"
msgid "Table %s already exists!"
msgstr "Tabel %s eksisterer allerede!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabellen %1$s har blitt opprettet."
@@ -12365,45 +12375,45 @@ msgstr "Fjern partisjonering"
msgid "Check referential integrity:"
msgstr "Sjekk referanseintegritet:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Vis tabeller"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Plassbruk"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Bruk"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Radstatistikk"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statisk"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamisk"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Radlengde"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Radstørrelse "
+msgstr "Radstørrelse"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12721,33 +12731,33 @@ msgstr "Spor disse datamanipulasjonsspørringene:"
msgid "Create version"
msgstr "Opprett versjon"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Skjul søkekriterier"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Maks antall rader som kan framvises"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/po/nl.po b/po/nl.po
index 51fd4f4fa1..f482cb6a22 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-04-23 16:55+0200\n"
"Last-Translator: Dieter Adriaenssens \n"
"Language-Team: dutch \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Toon alles"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Paginanummer:"
@@ -38,30 +38,30 @@ msgstr ""
"afgesloten of uw browser blokkeert bijwerkingen van uw venster."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Zoeken"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "Zoeken"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Start"
@@ -111,8 +111,8 @@ msgid "Database comment: "
msgstr "Databankopmerking: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tabelopmerkingen"
@@ -123,14 +123,14 @@ msgstr "Tabelopmerkingen"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Kolom"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "Kolom"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Type"
@@ -155,9 +155,9 @@ msgstr "Type"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Leeg"
@@ -167,7 +167,7 @@ msgstr "Leeg"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Standaardwaarde"
@@ -176,18 +176,18 @@ msgstr "Standaardwaarde"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Verwijst naar"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Opmerkingen"
@@ -198,11 +198,11 @@ msgstr "Opmerkingen"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "Nee"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "Ja"
msgid "View dump (schema) of database"
msgstr "Bekijk een dump (schema) van databank"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Geen tabellen gevonden in de databank."
@@ -321,8 +321,8 @@ msgstr "Overschakelen naar de gekopieerde databank"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -342,8 +342,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Bewerk of exporteer relationeel schema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -353,45 +353,44 @@ msgstr "Bewerk of exporteer relationeel schema"
msgid "Table"
msgstr "Tabel"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rijen"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Grootte"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "in gebruik"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Gecreëerd"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Laatst bijgewerkt"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Laatst gecontroleerd"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -480,13 +479,13 @@ msgstr "Tabellen gebruiken"
msgid "SQL query on database %s :"
msgstr "SQL-query op databank %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Query uitvoeren"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Toegang geweigerd"
@@ -520,8 +519,8 @@ msgstr[0] "%1$s overeenkomst in de tabel %2$s "
msgstr[1] "%1$s overeenkomsten in de tabel %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Verkennen"
@@ -597,11 +596,11 @@ msgstr "View %s is verwijderd"
msgid "Table %s has been dropped"
msgstr "Tabel %s is vervallen"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Tracking is ingeschakeld."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Tracking is niet actief."
@@ -614,7 +613,7 @@ msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "View"
@@ -659,7 +658,7 @@ msgstr "Selecteer tabellen met overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -668,17 +667,18 @@ msgid "Export"
msgstr "Exporteren"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Afdrukken"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Legen"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -721,15 +721,14 @@ msgid "Tracked tables"
msgstr "Tabellen met tracker"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Databank"
@@ -747,7 +746,7 @@ msgstr "Bijgewerkt"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -941,13 +940,13 @@ msgstr "Toon bladwijzer"
msgid "The bookmark has been deleted."
msgstr "De bladwijzer werd verwijderd."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Bestand kon niet worden gelezen"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -981,7 +980,7 @@ msgstr ""
"De plugins voor het importeren konden niet worden geladen, controleer uw "
"installatie!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Bladwijzer %s aangemaakt"
@@ -1008,8 +1007,8 @@ msgstr ""
"dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsbeperkingen van PHP "
"worden versoepeld."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1120,9 +1119,9 @@ msgid "Close"
msgstr "Sluiten"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Wijzigen"
@@ -1146,7 +1145,7 @@ msgstr "Statische gegevens"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Totaal"
@@ -1157,12 +1156,12 @@ msgid "Other"
msgstr "Andere"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1246,13 +1245,13 @@ msgid "System swap"
msgstr "Systeemwisselbestand"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1310,27 +1309,27 @@ msgid "Connections"
msgstr "Verbindingen"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1370,9 +1369,9 @@ msgstr "Gelieve tenminste één variabele toe te voegen aan de reeks"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Geen"
@@ -1562,7 +1561,7 @@ msgstr "Verklaar resultaat"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tijd"
@@ -1882,7 +1881,7 @@ msgstr "%d is geen geldig rijnummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1896,7 +1895,7 @@ msgstr "Zoekcriteria verbergen"
msgid "Show search criteria"
msgstr "Zoekcriteria tonen"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Zoeken door in te zoomen"
@@ -2073,7 +2072,7 @@ msgstr "Wachtwoord wijzigen"
msgid "More"
msgstr "Meer"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2160,63 +2159,63 @@ msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "mei"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "dec"
@@ -2254,32 +2253,32 @@ msgid "Sun"
msgstr "zo"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "ma"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "di"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "wo"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "do"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "vr"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "za"
@@ -2425,11 +2424,11 @@ msgstr ""
"Verkeerde rechten ingesteld op het configuratiebestand, dit mag niet "
"leesbaar zijn voor iedereen!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Lettertypegrootte"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Er zijn teveel foutmeldingen, sommige worden niet weergegeven."
@@ -2437,13 +2436,13 @@ msgstr "Er zijn teveel foutmeldingen, sommige worden niet weergegeven."
msgid "File was not an uploaded file."
msgstr "Bestand is geen geüpload bestand."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Het geüploade bestand is groter dan de optie 'upload_max_filesize' uit uw "
"php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2451,27 +2450,27 @@ msgstr ""
"Het geüploade bestand overschrijdt de MAX_FILE_SIZE-optie die was opgegeven "
"in het HTML-formulier."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Het geüploade bestand was slechts gedeeltelijk ontvangen."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "De map voor tijdelijke bestanden ontbreekt."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Opslaan van het bestand op de harde schijf is mislukt."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Upload afgebroken vanwege de extensie."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Onbekende fout bij het uploaden."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2479,11 +2478,11 @@ msgstr ""
"Fout bij het verplaatsen van het geüploade bestand, zie [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Fout bij het verplaatsen van het geüploade bestand."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Het geüploade bestand kan niet gelezen (verplaatst) worden."
@@ -2497,7 +2496,7 @@ msgstr "Geen index gedefinieerd!"
msgid "Indexes"
msgstr "Indexen"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2535,46 +2534,46 @@ msgstr ""
"De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden "
"verwijderd."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Databanken"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Structuur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Invoegen"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Handelingen"
@@ -2653,27 +2652,27 @@ msgstr "Plug-ins"
msgid "Engines"
msgstr "Engines"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fout"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rij bijgewerkt."
msgstr[1] "%1$d rijen bijgewerkt."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rij verwijderd."
msgstr[1] "%1$d rijen verwijderd."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2718,45 +2717,45 @@ msgstr "%s is uitgeschakeld op deze MySQL-server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Deze MySQL-server ondersteund de %s opslag-engine niet."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "onbekende tabelstatus: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Brondatabank"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Thema %s niet gevonden!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Ongeldige databank"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Ongeldige tabelnaam"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabel %1$s is hernoemd naar %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Tabelinterfacevoorkeuren konden niet worden opgeslagen"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2765,7 +2764,7 @@ msgstr ""
"Opkuisen van tabelinterfacevoorkeuren is mislukt (zie $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2776,16 +2775,16 @@ msgstr ""
"wijzigingen zullen verdwijnen na verversen van deze pagina. Gelieve na te "
"kijken of de tabelstructuur gewijzigd werd."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Geen geldig afbeeldingenpad voor thema %s gevonden!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Geen preview beschikbaar."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "neem het"
@@ -2837,7 +2836,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2878,13 +2877,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "geschreven door %2$s op %1$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2895,7 +2894,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2913,7 +2912,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2926,7 +2925,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3025,77 +3024,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Creëer een nieuwe index"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Lijnstuk definitie"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Ruimtelijk"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3169,7 +3168,7 @@ msgstr "Serverkeuze"
msgid "Cookies must be enabled past this point."
msgstr "Cookies moeten aan staan voorbij dit punt."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3177,14 +3176,14 @@ msgstr ""
"Aanmelden zonder wachtwoord is niet toegestaan door de instellingen (zie "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Geen activiteit voor %s seconden of meer, meld a.u.b. opnieuw aan"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Kan niet aanmelden op de MySQL-server"
@@ -3228,18 +3227,18 @@ msgstr "Tabellen"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overhead"
@@ -3347,8 +3346,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-query"
@@ -3358,146 +3357,146 @@ msgstr "SQL-query"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL retourneerde: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Er kan geen verbinding worden gemaakt met de SQL-validator!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Verklaar SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Uitleg SQL overslaan"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "zonder PHP-code"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Genereer PHP-code"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Vernieuw"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL-validatie overslaan"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Valideer SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Rechtstreekse bewerking van deze query"
# "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen
# iets anders.
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Rechtstreeks"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profiling"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "zo"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y om %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagen, %s uren, %s minuten en %s seconden"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Ontbrekende parameter:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Vorige"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Volgende"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Einde"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Ga naar databank "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Klik om te wisselen"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Blader op uw eigen pc:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Selecteer uit de web-server upload directory %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Er zijn geen bestanden om te uploaden"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Uitvoeren"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Afdrukken"
@@ -3581,68 +3580,68 @@ msgstr "beide bovenstaande opties"
msgid "neither of the above"
msgstr "geen van bovenstaande opties"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Geen positief getal"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Geen niet-negatief getal"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Geen geldig poortnummer"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Foutieve waarde"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Waarde moet lager of gelijk zijn aan %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Ontbrekende data voor %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "onbeschikbaar"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" vereist de extensie %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "importeren is niet mogelijk, functie ontbreekt (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "exporteren is niet mogelijk, functie ontbreekt (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL-validator is uitgeschakeld"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "PHP SOAP-extensie niet gevonden"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maximum %s"
@@ -3663,7 +3662,7 @@ msgid "Set value: %s"
msgstr "Waarde instellen op: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Standaard waarde herstellen"
@@ -3969,7 +3968,7 @@ msgid "Character set of the file"
msgstr "Karakterset voor het bestand"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Opmaak"
@@ -4068,7 +4067,7 @@ msgstr "Labelsleutel"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-type"
@@ -4193,8 +4192,8 @@ msgstr "Aanpassen standaard opties"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV-gegevens"
@@ -4627,14 +4626,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Het minimale aantal tabellen waarbij een filterveld wordt getoond"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Het minimale aantal tabellen waarbij een filterveld wordt getoond"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Teken(reeks) dat de boomdiepte aangeeft in databasenamen"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Scheidingsteken databank boomstructuur"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4642,39 +4647,39 @@ msgstr ""
"Enkel de lichte versie; toon databanken als een boomstructuur "
"(scheidingsteken zoals hieronder aangegeven)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Toon databanken als een boom"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Schakel dit uit wanneer u alle databanken in een keer wil zien"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Gebruik lichte versie"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maximum diepte tabelboomstructuur"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Teken(reeks) dat de boomdiepte aangeeft in tabelnamen"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Scheidingsteken tabelboomstructuur"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL van het logo in het navigatieframe"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL voor de link van het logo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4682,40 +4687,40 @@ msgstr ""
"Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe ([kbd]"
"new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Linkbestemming van logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Server onder de muispijl markeren"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Markeren inschakelen"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Het maximum aantal recent gebruikte tabellen dat wordt getoond; vul 0 in om "
"uit te schakelen"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Recent gebruikte tabellen"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Maximaal aantal karakters dat wordt getoond in een niet-numerieke kolom bij "
"het bekijken van queryresultaten"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Beperk lengte van veldweergave"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4726,11 +4731,11 @@ msgstr ""
"meerdere servers wordt gewerkt en dit niet is ingeschakeld kan het snel "
"gebeuren dat u vergeet om af te melden voor een van de servers."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Alle cookies verwijderen bij het afmelden"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4738,11 +4743,11 @@ msgstr ""
"Geeft aan of de laatst gebruikte gebruikersnaam moet worden herinnerd "
"wanneer u geen gebruik maakt van de cookie-authenticatiemethode"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Gebruikersnaam herinneren"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4754,51 +4759,51 @@ msgstr ""
"van de huidige sessie bewaard, en vervalt wanneer de browser wordt "
"afgesloten. Dit is aan te raden voor niet-vertrouwde omgevingen."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Opslag voor aanmeldingscookie"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Definieer hoelang (in seconden) een aanmeldingscookie geldig blijft"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Geldigheid aanmeldingscookie"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Dubbele grootte van tekstveld voor LONGTEXT-kolommen"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Groter tekstveld voor LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
"Maximaal aantal karakters dat wordt gebruikt bij het tonen van een SQL-query"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Maximaal getoonde SQL-lengte"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Gebruiker kan geen hogere waarde instellen"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Het maximale aantal databanken dat wordt getoond in het linker frame en de "
"databanklijst"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Maximum aantal databanken"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4808,19 +4813,19 @@ msgstr ""
"resultatenset. Indien de resultatenset meer rijen bevat worden de links "
""Volgende" en "Vorige" getoond."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maximum aantal te tonen rijen"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Het maximum aantal tabellen dat wordt getoond in de tabellenlijst"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Maximum aantal tabellen"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4828,11 +4833,11 @@ msgstr ""
"Schakel de standaard waarschuwing uit als mcrypt ontbreekt voor cookie-"
"authenticatie"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt-waarschuwing"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4840,44 +4845,44 @@ msgstr ""
"Het aantal bytes aan geheugen dat een script maximaal mag gebruiken, "
"bijvoorbeeld [kbd]32M[/kbd] ([kbd]0[/kbd] voor geen limiet)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Geheugenlimiet"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Dit zijn de links Bewerken, Kopiëren en Verwijderen"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Waar de tabelregellinks getoond worden"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
"Gebruik natuurlijke volgorde voor het sorteren van tabel- en databanknamen"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Natuurlijke volgorde"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Gebruik enkel iconen, enkel tekst of beide"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Icoon gebruiken in navigatiebalk"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "GZip-uitvoerbuffering gebruiken voor het versnellen van HTTP-verkeer"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip-uitvoerbuffering"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4885,19 +4890,19 @@ msgstr ""
"[kbd]SMART[/kbd] - op aflopende volgorde voor velden van het type TIME, "
"DATE, DATETIME en TIMESTAMP, oplopend voor overige velden"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Standaard sorteervolgorde"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Gebruik persistente verbindingen voor MySQL-databanken"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Persistente verbindingen"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4907,23 +4912,23 @@ msgstr ""
"wanneer een benodigde tabel voor phpMyAdmin-configuratie-opslag niet "
"gevonden kan worden, uitschakelen"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabellen voor phpMyAdmin-configuratie-opslag ontbreken"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Iconen gebruiken bij tabelbewerkingen"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Blokkeer het bewerken van 'BLOB'- en 'BINARY'-velden"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Binaire velden beschermen"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4934,114 +4939,114 @@ msgstr ""
"worden JS-routines gebruikt om querygeschiedenis te tonen (deze gaat "
"verloren bij het sluiten van het venster)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Permanente querygeschiedenis"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Hoeveel queries er worden bewaard in de geschiedenis"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Lengte querygeschiedenis"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Tabblad dat wordt getoond bij het openen van een nieuw queryvenster"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Standaard query-venstertabblad"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Query-vensterhoogte (in pixels)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Query-vensterhoogte"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Query-vensterbreedte (in pixels)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Query-vensterbreedte"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Selecteer welke functies worden gebruikt om karaktersetconversies uit te "
"voeren"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Hercoderingsengine"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Bij het bekijken van tabellen, wordt de sorteervolgorde onthouden"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "De tabelsortering onthouden"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Herhaal de kopregel elke X cellen, [kbd]0[/kbd] schakelt deze functie uit"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Kopregels herhalen"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Alle wijzigingen aan cellen tegelijk opslaan"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Directory op de server waar exports kunnen worden opgeslagen"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Opslagdirectory"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Laat dit veld leeg indien u het niet wenst te gebruiken"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Volgorde machine-autorisatie"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Laat dit veld leeg om de standaardwaarde te gebruiken"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Regels hostautorisatie"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Aanmelden zonder wachtwoord toestaan"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Aanmelden als root toestaan"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP Basic Auth Realm naam om weer te geven tijdens HTTP Auth"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5051,19 +5056,19 @@ msgstr ""
"hardware-authenticatie[/a] (niet binnen de document root directory van uw "
"webserver; suggestie: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey-configuratiebestand"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "De te gebruiken authenticatiemethode"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Authenticatietype"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5071,11 +5076,11 @@ msgstr ""
"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"bladwijzers[/a] te gebruiken, suggestie: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Bladwijzertabel"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5083,31 +5088,31 @@ msgstr ""
"Laat dit veld leeg om geen kolomopmerkingen en mimetypes te ondersteunen, "
"suggestie: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabel voor kolominformatie"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Comprimeer verbinding naar de MySQL-server"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Comprimeer verbinding"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Hoe te verbinden met de server, gebruik bij twijfel [kbd]tcp[/kbd]"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Verbindingstype"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Controle gebruikerswachtwoord"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5115,11 +5120,11 @@ msgstr ""
"Een speciale MySQL-gebruiker met beperkte rechten, zie de [a@http://wiki."
"phpmyadmin.net/pma/controluser]wiki[/a] voor meer informatie"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Controle gebruiker"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5127,19 +5132,19 @@ msgstr ""
"Een alternatieve machine voor de configuratieopslag; laat leeg om de reeds "
"gedefinieerde machine te gebruiken"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Controle machine"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Tel het aantal tabellen bij het weergeven van een databanklijst"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Tel tabellen"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5147,11 +5152,11 @@ msgstr ""
"Laat dit veld leeg om de Designer niet te gebruiken, suggestie: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Designer tabel"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5159,30 +5164,30 @@ msgstr ""
"Zie voor meer informatie: [a@http://sf.net/support/tracker.php?aid=1849494]"
"PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Geen gebruik maken van INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Welke PHP-extensie er gebruikt zal worden; gebruik mysqli waar mogelijk"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP-extensie"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
"Verberg databanken die aan de hier opgegeven reguliere expressie (PCRE) "
"voldoen"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Verberg databanken"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5190,23 +5195,23 @@ msgstr ""
"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, suggestie: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabel voor SQL-querygeschiedenis"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Machinenaam waar de MySQL-server bereikbaar is"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Servermachinenaam"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL voor afmelden"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5214,19 +5219,19 @@ msgstr ""
"Beperkt het aantal tabelvoorkeuren die opgeslagen zijn in de databank, de "
"oudste worden automatisch verwijderd"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Het maximum aantal tabelvoorkeuren die opgeslagen worden"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Probeer te verbinden zonder wachtwoord"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Verbinden zonder wachtwoord"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5240,31 +5245,31 @@ msgstr ""
"sorteren door hun naam op volgorde in te voeren en met [kbd]*[/kbd] te "
"eindigen om de rest op alfabetische volgorde te tonen."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Toon enkel de opgesomde databanken"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
"Laat dit veld leeg indien u geen gebruik maakt van 'config'-authenticatie"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Wachtwoord voor 'config'-authenticatie"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Laat dit veld leeg om PDF-schemaondersteuning uit te schakelen, suggestie: "
"[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF-schema: pagina's tabel"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5275,21 +5280,21 @@ msgstr ""
"informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: [kbd]"
"phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Databanknaam"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Het TCP-poortnummer waarop MySQL luistert, laat dit veld leeg om de "
"standaard waarde te gebruiken"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Serverpoort"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5297,11 +5302,11 @@ msgstr ""
"Laat dit veld leeg om geen recent gebruikte tabellen op te slaan over "
"sessies heen, voorstel: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Recent gebruikte tabel"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5309,19 +5314,19 @@ msgstr ""
"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/relation]"
"relation-links[/a] te ondersteunen, suggestie: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relatietabel"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL-opdracht om de beschikbare databanken op te vragen"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Opdracht SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5329,44 +5334,44 @@ msgstr ""
"Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatietypes[/"
"a] voor een voorbeeld"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Signon-sessienaam"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Signon-URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Het socket waarop de MySQL-server luistert, laat dit leeg voor de standaard "
"waarde"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Serversocket"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "SSL toepassen voor de verbinding naar de MySQL-server"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL gebruiken"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF-schema: tabelcoördinaten"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5375,11 +5380,11 @@ msgstr ""
"is, laat dit veld leeg om weer te geven velden niet te ondersteunen; "
"suggestie: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Toon veldentabel"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5387,11 +5392,11 @@ msgstr ""
"Laat dit veld leeg om geen interfacevoorkeuren op te slaan, voorstel: [kbd]"
"pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Tabel voor interfacevoorkeuren"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5399,11 +5404,11 @@ msgstr ""
"Of de opdracht DROP DATABASE IF EXISTS toegevoegd wordt als eerste regel van "
"de log als een databank aangemaakt wordt."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE toevoegen"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5411,12 +5416,12 @@ msgstr ""
"Of een opdracht DROP TABLE IF EXISTS toegevoegd wordt als eerste regel van "
"de log als een tabel aangemaakt wordt."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "DROP TABLE toevoegen"
# "statement" hier vertalen is geen goed idee.
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5424,21 +5429,21 @@ msgstr ""
"Of een opdracht DROP VIEW IF EXISTS als de eerste lijn toegevoegd zal worden "
"bij het aanmaken van een weergave of niet."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "DROP VIEW toevoegen"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definieert de lijst van opdrachten die gebruikt worden bij het automatisch "
"aanmaken bij nieuwe versies."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Bij te houden opdrachten"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5446,11 +5451,11 @@ msgstr ""
"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, voorgesteld: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL-query-opvolgingstabel"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5458,11 +5463,11 @@ msgstr ""
"Of het opvolgsysteem versies voor tabellen en weergaven automatisch aanmaakt "
"of niet."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Automatisch versies aanmaken"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5470,15 +5475,15 @@ msgstr ""
"Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de databank, "
"bijvoorbeeld: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Opslagtabel voor gebruikersvoorkeuren"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Gebruiker voor 'config'-authenticatie"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5486,19 +5491,19 @@ msgstr ""
"Een gebruiksvriendelijke naam voor deze server. Laat dit veld leeg om de "
"machinenaam te tonen."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Uitgebreide naam voor deze server"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Of er een knop "Toon alle (rijen)" moet worden getoond"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Toon alle rijen"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5509,47 +5514,47 @@ msgstr ""
"configuratiebestand staat opgeslagen; dit beperkt echter niet de "
"mogelijkheid om de bijbehorende SQL-opdracht handmatig uit te voeren"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Toon formulier voor wachtwoord wijzigen"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Toon formulier om een nieuwe databank aan te maken"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Toon of verberg een kolom met voor alle tabellen het tijdstip waarop deze "
"aangemaakt werd"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Toon het tijdstip van aanmaken"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Toon of verberg een kolom met voor alle tabellen het tijdstip waarop deze "
"laatst aangepast werd"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Toon het tijdstip van laatste aanpassing"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Toon of verberg een kolom met voor alle tabellen het tijdstip waarop deze "
"laatst bekeken werd"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Toon het tijdstip van laatste controle"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5557,11 +5562,11 @@ msgstr ""
"Bepaalt of de optie weergaverichting getoond wordt bij het bekijken van een "
"tabel"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Toon weergaverichting"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5569,27 +5574,27 @@ msgstr ""
"Definieert of type velden initieel getoond worden in de modus bewerken/"
"toevoegen"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Toon veldtypes"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Toon de functievelden tijdens het wijzigen/invoegen"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Toon functievelden"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Of een hint getoond wordt of niet"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Toon hint"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5597,44 +5602,44 @@ msgstr ""
"Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Toon link naar phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Toon gedetailleerde MySQL-serverinformatie"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Geeft aan of SQL-queries die door phpMyAdmin werden gegenereerd moeten "
"worden getoond"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Toon SQL-queries"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "Bepaalt of het queryveld op het scherm moet blijven na invoer"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Queryveld behouden"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Maakt het mogelijk om statistieken van databanken en tabellen te tonen (over "
"o.a. het schijfgebruik)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Toon statistieken"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5642,11 +5647,11 @@ msgstr ""
"Indien tooltips zijn ingeschakeld en er een databankopmerking aanwezig is, "
"wisselt dit de opmerking en de werkelijke naam om"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Toon databankopmerking in plaats van de naam"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5657,30 +5662,30 @@ msgstr ""
"$cfg['LeftFrameTableSeparator'] gesplitst. Hierdoor krijgt enkel de map de "
"naam van de opmerking, de tabelnaam blijft ongewijzigd"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Toon tabelopmerking in plaats van de naam"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Toon tabelopmerking in een tooltip"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Markeer in gebruik zijnde tabellen, waardoor het mogelijk om een databanken "
"die deze tabellen bevat te tonen"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Herken vergrendelde tabellen"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Vereist dat SQL-Validator geactiveerd is"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5690,7 +5695,7 @@ msgstr "Vereist dat SQL-Validator geactiveerd is"
msgid "Password"
msgstr "Wachtwoord"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5698,33 +5703,33 @@ msgstr ""
"[strong]Waarschuwing:[/strong] Vereist dat de extensie PHP SOAP of PEAR SOAP "
"geïnstalleerd is"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "SQL-Validator activeren"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Geef eventueel aangepaste gebruikersnaam op (standaard [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Gebruikersnaam"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Een waarschuwing wordt getoond op de hoofdpagina als Suhosin gedetecteerd "
"wordt"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin-waarschuwing"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5732,11 +5737,11 @@ msgstr ""
"Tekstveldgrootte (kolommen) in bewerkmodus, deze waarde wordt benadrukt "
"weergegeven voor SQL-querytekstvelden (*2) en voor het queryscherm (*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Tekstveldkolommen"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5744,31 +5749,31 @@ msgstr ""
"Tekstveldgrootte (rijen) in bewerkmodus, deze waarde wordt benadrukt "
"weergegeven voor SQL-querytekstvelden (*2) en voor het queryscherm (*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Tekstveldregels"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Titel van het browserscherm wanneer een databank is geselecteerd"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Titel van het browserscherm wanneer niets geselecteerd is"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Standaard titel"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titel van het browserscherm wanneer een server is geselecteerd"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Titel van het browserscherm wanneer een tabel is geselecteerd"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5780,28 +5785,28 @@ msgstr ""
"For) header moet vertrouwen wanneer deze afkomstig is van het IP 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lijst van vertrouwde proxyservers"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"Directory op de server waar te importeren bestanden kunnen worden geüpload"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Uploadfolder"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Maak het mogelijk om te zoeken binnen de gehele databank"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Databankzoekfunctie gebruiken"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5809,28 +5814,28 @@ msgstr ""
"Wanneer uitgeschakeld, kunnen gebruikers geen van de opties onderaan "
"wijzigen, onafhankelijk van het aanvinkveld aan de rechterkant"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Schakel het ontwikkelaarstabblad in bij instellingen"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Controleren op de meest recente versie"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Schakel de controle op de nieuwste versie in op de hoofdpagina van phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Versiecontrole"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5838,7 +5843,7 @@ msgstr ""
"Gebruik [a@http://nl.wikipedia.org/wiki/ZIP_(bestandstype)]ZIP[/a]-"
"compressie voor import- en exportoperaties"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5859,87 +5864,87 @@ msgid "Signon authentication"
msgstr "Signon-authenticatie"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV met behulp van LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document-rekenblad"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Snel"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Aangepast"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Databankexportopties"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV voor MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Tekst"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Drizzle-verbindingsbibliotheek kon niet geïnitialiseerd worden"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Er kan geen verbinding worden gemaakt met de Drizzle-server"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Er kan geen verbinding worden gemaakt met de MySQL-server"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Lege gebruikersnaam bij gebruik van het authenticatietype config"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"Lege signon-sessienaam wanneer u gebruik maakt van het authenticatietype "
"signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"Lege signon-URL wanneer u gebruik maakt van het authenticatietype signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "De controlegebruikersnaam is leeg terwijl u wel de pmadb gebruikt"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"Het wachtwoord voor de controlegebruiker is leeg terwijl u wel de pmadb "
"gebruikt"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Foutief IP-adres: %s"
@@ -5959,22 +5964,22 @@ msgstr "De extensie %s ontbreekt. Gelieve uw PHP-configuratie te controleren."
msgid "possible deep recursion attack"
msgstr "mogelijke diepe recursieaanval"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"De server reageert niet (of de socket van de server is niet juist ingesteld)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "De server reageert niet."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Gelieve de rechten op de folder met de databank na te kijken."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Details..."
@@ -6041,7 +6046,7 @@ msgstr "Tabel aanmaken"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Naam"
@@ -6202,25 +6207,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Omzetting van de codering:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s van tak %2$s"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "geen tak"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Git revisie"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "gecommit op %1$s door %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "geschreven door %2$s op %1$s"
@@ -6947,18 +6952,17 @@ msgid "Display MIME types"
msgstr "Toon beschikbare MIME-types"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Machine"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Genereertijd"
@@ -7179,15 +7183,7 @@ msgstr "Geen gegevens beschikbaar voor GIS-visualisatie."
msgid "GLOBALS overwrite attempt"
msgstr "poging om GLOBALS te overschrijven"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-resultaat"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Gegenereerd door"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL gaf een lege resultatenset terug (0 rijen)."
@@ -7287,7 +7283,7 @@ msgstr "Verkeerd aantal velden in CSV-invoer op regel %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Tabelnaam"
@@ -7647,7 +7643,7 @@ msgstr "Aanmaken van PDF-bestanden"
msgid "Displaying Column Comments"
msgstr "Toon kolomopmerkingen"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browsertransformaties"
@@ -7756,10 +7752,10 @@ msgid "Variable"
msgstr "Variabelen"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Waarde"
@@ -7822,7 +7818,7 @@ msgstr "Wachtwoord genereren"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7860,8 +7856,8 @@ msgid "Edit event"
msgstr "Gebeurtenis bewerken"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Fout tijdens het uitvoeren van de opdracht"
@@ -7912,7 +7908,7 @@ msgstr "Na afloop behouden"
msgid "Definer"
msgstr "Naam"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "De naam moet het formaat \"gebruikersnaam@computernaam\" hebben"
@@ -7971,7 +7967,7 @@ msgstr ""
"te gebruiken om problemen te vermijden."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Ongeldig routine-type: \"%s\""
@@ -8042,17 +8038,17 @@ msgstr "Beveiligingstype"
msgid "SQL data access"
msgstr "SQL-gegevenstoegang"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Gelieve een routinenaam in te geven"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Ongeldige richting \"%s\" opgegeven voor parameter."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8060,41 +8056,41 @@ msgstr ""
"Gelieve een lengte/waarden op te geven voor routineparameters van het type "
"ENUM, SET, VARCHAR en VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Gelieve een naam en type op te geven voor iedere routineparameter."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Gelieve een geldig return-type op te geven voor de routine."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Gelieve een routinedefinitie op te geven."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d regel beïnvloed door het laatste statement in de procedure"
msgstr[1] "%d regels beïnvloed door het laatste statement in de procedure"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Resultaten van uitgevoerde routine %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Routine uitvoeren"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Routineparameters"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Functie"
@@ -8269,7 +8265,7 @@ msgstr "Inhoudsopgave"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attributen"
@@ -8368,12 +8364,12 @@ msgid "Toggle scratchboard"
msgstr "Voorbeeldkader aan/uit"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Onbekende taal: %1$s."
@@ -8419,7 +8415,7 @@ msgstr "Voer SQL-query/queries uit op de server %s"
msgid "Run SQL query/queries on database %s"
msgstr "Voer SQL-query/queries uit op databank %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Leegmaken"
@@ -8428,11 +8424,11 @@ msgstr "Leegmaken"
msgid "Columns"
msgstr "Kolommen"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Deze SQL-query opslaan"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Elke gebruiker toegang geven tot deze bladwijzer"
@@ -8533,12 +8529,12 @@ msgstr ""
"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie"
"%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Tracking van %s is ingeschakeld."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8550,7 +8546,7 @@ msgstr ""
"een enkel aanhalingsteken (\"'\") bij deze waardes, plaats er dan een "
"backslash voor (voorbeeld '\\\\xyz' of 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8558,19 +8554,19 @@ msgstr ""
"Voer voor standaard waarden aub een enkele waarde in, zonder backslash of "
"aanhalingstekens, gebruik makend van dit formaat: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Index"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Kolom(men) verwijderen"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8579,11 +8575,11 @@ msgstr ""
"Voor een lijst met beschikbare transformatieopties en MIME-type-"
"transformaties, klik op %sTransformatieopties%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Transformatieopties"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8595,73 +8591,73 @@ msgstr ""
"(\"'\") moet invoegen in deze waardes, plaats er dan een backslash voor "
"(bijvoorbeeld '\\\\xyz' of 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM- of SET-gegevens te lang?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Meer plaats om te bewerken"
# "Geen" of indien telbaar: "Geen enkele".
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Geen"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Zoals aangegeven:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primaire sleutel"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Volledige tekst"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Na %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "%s kolom(men) toevoegen"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "U moet minstens één kolom toevoegen."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Opslag-engine"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "PARTITION-definitie"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "In de tabel zoeken"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Aanpassen/Invoegen"
@@ -8833,11 +8829,11 @@ msgstr ""
"Uw voorkeuren worden enkel in de huidige sessie bewaard. Om deze permanent "
"te bewaren is %sphpMyAdmin-configuratie-opslag%s vereist."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Opslaan van het configuratiebestand is niet mogelijk"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8849,8 +8845,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Geen bestanden gevonden in ZIP-archief!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Fout in het ZIP-archief:"
@@ -9028,16 +9024,22 @@ msgstr ""
msgid "No databases"
msgstr "Geen databanken"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Tabellen filteren op naam"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Tabellen filteren op naam"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Tabel aanmaken"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Selecteer a.u.b. een databank"
@@ -10210,7 +10212,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Questions sinds opstart: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Opdrachten"
@@ -11486,14 +11488,14 @@ msgstr "Negeer foutmeldingen"
msgid "Show form"
msgstr "Toon formulier"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Zowel de URL-wrapper als CURL zijn niet aanwezig. Versiecontrole is niet "
"mogelijk."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11501,15 +11503,15 @@ msgstr ""
"Het ophalen van de versie-informatie is mislukt. Mogelijk bent u offline, of "
"is de upgradeserver niet beschikbaar."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Een ongeldige versiecode was ontvangen van de server"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "De versiecode werd niet herkend"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11518,11 +11520,11 @@ msgstr ""
"U gebruikt een Git-versie, voer [kbd]git pull[/kbd] uit :-)[br]De meest "
"recente stabiele versie is %s, uitgebracht op %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Er is geen recentere stabiele versie beschikbaar"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11537,7 +11539,7 @@ msgstr ""
"mogelijk niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw "
"provider komt waar ook vele andere klanten gebruik van maken."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11547,7 +11549,7 @@ msgstr ""
"sleutel was automatisch voor u gegenereerd. Deze wordt gebruikt om cookies "
"te versleutelen en hoeft u niet zelf te onthouden."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11556,7 +11558,7 @@ msgstr ""
"%sBzip2-compressie en decompressie%s vereisen functies (%s) die niet "
"beschikbaar zijn op dit systeem."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11565,13 +11567,13 @@ msgstr ""
"de folder niet toegankelijk, leesbaar of schrijfbaar is voor andere "
"gebruikers op uw server."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Deze %soptie%s wordt best geactiveerd als uw webserver dit ondersteunt."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11580,7 +11582,7 @@ msgstr ""
"%sGZip-compressie en decompressie%s vereisen functies (%s) welke niet "
"beschikbaar zijn op dit systeem."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11591,7 +11593,7 @@ msgstr ""
"sessieproblemen veroorzaken als %ssession.gc_maxlifetime%s lager is dan deze "
"waarde (huidige waarde: %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11601,7 +11603,7 @@ msgstr ""
"moeten zijn. Een waarde hoger dan 1800 kan een beveiligingsrisico opleveren, "
"bv. iemand die uw identiteit kan misbruiken."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11611,7 +11613,7 @@ msgstr ""
"gelijk is aan 0, dan moet %sAanmeldingscookiegeldigheid%s een waarde hebben "
"die kleiner of gelijk is."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11624,7 +11626,7 @@ msgstr ""
"beveiliging is mogelijk niet betrouwbaar wanneer uw IP-adres uit het netwerk "
"van uw provider komt, waar ook vele andere klanten gebruik van maken."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11639,7 +11641,7 @@ msgstr ""
"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype"
"%s [kbd]cookie[/kbd] of [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11648,7 +11650,7 @@ msgstr ""
"%sZip-compressie%s vereist functies (%s) die niet beschikbaar zijn op dit "
"systeem."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11657,23 +11659,23 @@ msgstr ""
"%sZip-decompressie%s vereist functies (%s) die niet beschikbaar zijn op dit "
"systeem."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Gebruik SSL-verbindingen als uw databankserver dit ondersteunt."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Voor betere prestaties kunt u het best mysqli gebruiken."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "U staat het toe dat een gebruiker zonder wachtwoord kan aanmelden."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Sleutel is te kort, deze moet minimaal 8 tekens bevatten."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
"Sleutel hoort letters, cijfers [em]en[/em] speciale tekens te bevatten."
@@ -11682,8 +11684,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Verkeerde gegevens"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Bekijk vreemde waarden"
@@ -11713,21 +11715,29 @@ msgstr "Toont SQL-query"
msgid "Validated SQL"
msgstr "Gevalideerde SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-resultaat"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Gegenereerd door"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemen met de indexen van de tabel `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Label"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabel %1$s is bijgewerkt"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11849,7 +11859,7 @@ msgstr "Y-waarden"
msgid "Table %s already exists!"
msgstr "Tabel %s bestaat reeds!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabel %1$s is aangemaakt."
@@ -12050,43 +12060,43 @@ msgstr "Partitionering verwijderen"
msgid "Check referential integrity:"
msgstr "Controleer referentiële integriteit:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Toon tabellen"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Ruimtegebruik"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Gebruik"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effectief"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Rijstatistieken"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statisch"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamisch"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Lengte van de rij"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Grootte van de rij"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Volgende automatische indexwaarde"
@@ -12378,29 +12388,29 @@ msgstr "Deze manipulatie-statements tracken:"
msgid "Create version"
msgstr "Versie aanmaken"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Voer een \"query als voorbeeld\" (wildcard: \"%\") uit op twee verschillende "
"kolommen"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Bijkomende zoekcriteria"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Gebruik deze kolom om ieder punt een naam te geven"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Maximum aantal af te drukken regels"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Doorzoek/bewerk de punten"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Hoe te gebruiken"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index c4e15e1b11..52f5c5ab05 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -24,11 +24,11 @@ msgid "Show all"
msgstr ""
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr ""
@@ -40,30 +40,30 @@ msgid ""
msgstr ""
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr ""
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr ""
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr ""
@@ -111,8 +111,8 @@ msgid "Database comment: "
msgstr ""
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr ""
@@ -123,14 +123,14 @@ msgstr ""
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr ""
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr ""
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr ""
@@ -155,9 +155,9 @@ msgstr ""
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr ""
@@ -167,7 +167,7 @@ msgstr ""
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr ""
@@ -176,18 +176,18 @@ msgstr ""
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr ""
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr ""
@@ -198,11 +198,11 @@ msgstr ""
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr ""
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr ""
@@ -321,8 +321,8 @@ msgstr ""
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -340,8 +340,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr ""
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -351,45 +351,44 @@ msgstr ""
msgid "Table"
msgstr ""
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr ""
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr ""
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr ""
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr ""
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr ""
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr ""
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, possible-php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -478,13 +477,13 @@ msgstr ""
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr ""
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr ""
@@ -518,8 +517,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -595,11 +594,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -611,7 +610,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -656,7 +655,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -665,17 +664,18 @@ msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -718,15 +718,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -744,7 +743,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -929,13 +928,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, possible-php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -958,7 +957,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, possible-php-format
msgid "Bookmark %s created"
msgstr ""
@@ -980,8 +979,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1090,9 +1089,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
@@ -1116,7 +1115,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
@@ -1127,12 +1126,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ""
@@ -1211,13 +1210,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr ""
@@ -1275,27 +1274,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr ""
@@ -1335,9 +1334,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr ""
@@ -1508,7 +1507,7 @@ msgstr ""
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1811,7 +1810,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1825,7 +1824,7 @@ msgstr ""
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr ""
@@ -1989,7 +1988,7 @@ msgstr ""
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, possible-php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2074,63 +2073,63 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr ""
@@ -2168,32 +2167,32 @@ msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr ""
@@ -2332,11 +2331,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2344,47 +2343,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2398,7 +2397,7 @@ msgstr ""
msgid "Indexes"
msgstr ""
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2434,46 +2433,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr ""
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2552,27 +2551,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, possible-php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, possible-php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, possible-php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2615,50 +2614,50 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, possible-php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, possible-php-format
msgid "Target database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, possible-php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, possible-php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr ""
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, possible-php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, possible-php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2666,16 +2665,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, possible-php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2727,7 +2726,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2768,12 +2767,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, possible-php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, possible-php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2784,7 +2783,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, possible-php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
@@ -2801,7 +2800,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, possible-php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2814,7 +2813,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2911,71 +2910,71 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr ""
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr ""
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3041,20 +3040,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, possible-php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3098,18 +3097,18 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3212,8 +3211,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr ""
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr ""
@@ -3223,144 +3222,144 @@ msgstr ""
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, possible-php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, possible-php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, possible-php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, possible-php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr ""
@@ -3444,68 +3443,68 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, possible-php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, possible-php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, possible-php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, possible-php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, possible-php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, possible-php-format
msgid "maximum %s"
msgstr ""
@@ -3524,7 +3523,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3801,7 +3800,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr ""
@@ -3900,7 +3899,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4022,8 +4021,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
@@ -4430,108 +4429,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4539,434 +4542,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -4975,350 +4978,350 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5326,28 +5329,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5357,76 +5360,76 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5434,59 +5437,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5507,82 +5510,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, possible-php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5602,21 +5605,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5678,7 +5681,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -5830,25 +5833,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, possible-php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, possible-php-format
msgid "committed on %1$s by %2$s"
msgstr ""
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, possible-php-format
msgid "authored on %1$s by %2$s"
msgstr ""
@@ -6508,18 +6511,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6717,15 +6719,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6817,7 +6811,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7168,7 +7162,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7265,10 +7259,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7327,7 +7321,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, possible-php-format
@@ -7363,8 +7357,8 @@ msgid "Edit event"
msgstr ""
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7414,7 +7408,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7468,7 +7462,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, possible-php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7539,57 +7533,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, possible-php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, possible-php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, possible-php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -7764,7 +7758,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -7861,12 +7855,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, possible-php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -7912,7 +7906,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -7921,11 +7915,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8011,12 +8005,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, possible-php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8024,34 +8018,34 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr ""
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, possible-php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8059,71 +8053,71 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, possible-php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, possible-php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr ""
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr ""
@@ -8245,11 +8239,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8259,8 +8253,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8410,16 +8404,20 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+msgid "Filter databases by name"
+msgstr ""
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr ""
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -9517,7 +9515,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -10598,37 +10596,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, possible-php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, possible-php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10637,39 +10635,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, possible-php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, possible-php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, possible-php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, possible-php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -10677,21 +10675,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, possible-php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, possible-php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, possible-php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -10700,7 +10698,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, possible-php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -10710,37 +10708,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, possible-php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, possible-php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -10748,8 +10746,8 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -10779,21 +10777,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, possible-php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, possible-php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr ""
@@ -10909,7 +10915,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, possible-php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11108,43 +11114,43 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr ""
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11427,27 +11433,27 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 6dd987057f..60831035d7 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-14 15:30+0200\n"
-"Last-Translator: Marcin Kozioł \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 14:07+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: iMutrix\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Pokaż wszystko"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Numer strony:"
@@ -40,30 +40,30 @@ msgstr ""
"skonfigurowane na blokowanie aktualizacji między oknami."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Szukaj"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Szukaj"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Wykonaj"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Komentarz bazy danych: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentarze tabeli"
@@ -125,14 +125,14 @@ msgstr "Komentarze tabeli"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Kolumna"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Kolumna"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -157,9 +157,9 @@ msgstr "Typ"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -169,7 +169,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Ustawienia domyślne"
@@ -178,18 +178,18 @@ msgstr "Ustawienia domyślne"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Odsyłacze do"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentarze"
@@ -200,11 +200,11 @@ msgstr "Komentarze"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "Nie"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Tak"
msgid "View dump (schema) of database"
msgstr "Zobacz zrzut (schemat) bazy danych"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Nie znaleziono żadnych tabel w bazie danych."
@@ -323,8 +323,8 @@ msgstr "Przełącz do przekopiowanej bazy danych"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Edytuj lub eksportuj schemat relacji"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "Edytuj lub eksportuj schemat relacji"
msgid "Table"
msgstr "Tabela"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rekordy"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Rozmiar"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "w użyciu"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Tworzenie"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Ostatnia aktualizacja"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Ostatnie sprawdzanie"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "Użyj tabel"
msgid "SQL query on database %s :"
msgstr "Zapytanie SQL do bazy danych %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Wyślij zapytanie"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Odmowa dostępu"
@@ -524,8 +523,8 @@ msgstr[1] "%1$s dopasowania wewnątrz tabeli %2$s "
msgstr[2] "%1$s dopasowań wewnątrz tabeli %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Przeglądaj"
@@ -602,11 +601,11 @@ msgstr "Widok %s został usunięty"
msgid "Table %s has been dropped"
msgstr "Tabela %s została usunięta"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Śledzenie jest aktywne."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Śledzenie nie jest aktywne."
@@ -620,7 +619,7 @@ msgstr ""
"do %sdokumentacji%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Widok"
@@ -665,7 +664,7 @@ msgstr "Zaznacz tabele nieoptymalne"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -674,17 +673,18 @@ msgid "Export"
msgstr "Eksport"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Podgląd wydruku"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Opróżnij"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -727,15 +727,14 @@ msgid "Tracked tables"
msgstr "Tabele śledzone"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Baza danych"
@@ -753,7 +752,7 @@ msgstr "Zaktualizowana"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -944,13 +943,13 @@ msgstr "Wyświetlanie zakładki"
msgid "The bookmark has been deleted."
msgstr "Zakładka została usunięta."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Nie można odczytać pliku"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -980,7 +979,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Zakładka %s utworzona"
@@ -1007,8 +1006,8 @@ msgstr ""
"dane, co zwykle oznacza, że phpMyAdmin nie będzie w stanie ukończyć tego "
"importu bez zwiększenia limitów czasowych PHP."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1119,9 +1118,9 @@ msgid "Close"
msgstr "Zamknij"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edytuj"
@@ -1145,7 +1144,7 @@ msgstr "Dane statyczne"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ogółem"
@@ -1156,12 +1155,12 @@ msgid "Other"
msgstr "Inne"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1244,13 +1243,13 @@ msgid "System swap"
msgstr "Systemowa przestrzeń wymiany"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1308,27 +1307,27 @@ msgid "Connections"
msgstr "Połączenia"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1368,9 +1367,9 @@ msgstr "Proszę dodać przynajmniej jedną zmienną do serii"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Żaden"
@@ -1497,7 +1496,6 @@ msgid "From general log"
msgstr "Z dziennika ogólnego"
#: js/messages.php:172
-#| msgid "Loading logs"
msgid "Analysing logs"
msgstr "Analizowanie logów"
@@ -1538,7 +1536,6 @@ msgid "Jump to Log table"
msgstr "Przejdź do dziennika tabeli"
#: js/messages.php:180
-#| msgid "No data"
msgid "No data found"
msgstr "Nie znaleziono danych"
@@ -1558,7 +1555,7 @@ msgstr "Wyjaśnij wynik przetworzenia danych"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Czas"
@@ -1580,12 +1577,10 @@ msgid "Chart"
msgstr "Wykres"
#: js/messages.php:191
-#| msgid "Add chart"
msgid "Edit chart"
msgstr "Edytuj wykres"
#: js/messages.php:192
-#| msgid "Series:"
msgid "Series"
msgstr "Serie"
@@ -1870,7 +1865,7 @@ msgstr "%d nie jest prawidłowym numerem wiersza."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1884,7 +1879,7 @@ msgstr "Ukryj okno zapytania SQL"
msgid "Show search criteria"
msgstr "Pokaż kryteria wyszukiwania"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Powiększ szukanie"
@@ -2062,7 +2057,7 @@ msgstr "Zmień hasło"
msgid "More"
msgstr "Więcej"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2149,63 +2144,63 @@ msgid "December"
msgstr "Grudzień"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Sty"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Kwi"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Cze"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Sie"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Wrz"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Paź"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Gru"
@@ -2243,32 +2238,32 @@ msgid "Sun"
msgstr "Nie"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Wto"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Śro"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Czw"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pią"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sob"
@@ -2357,8 +2352,6 @@ msgstr "Nie powiódł się uruchomiony test dla reguły '%s'"
#: libraries/Advisor.class.php:207
#, php-format
-#| msgid ""
-#| "Failed formatting string for rule '%s'. PHP threw following error: %s"
msgid "Failed formatting string for rule '%s'."
msgstr "Nie udało się formatowanie ciągu dla reguły '%s'."
@@ -2372,7 +2365,6 @@ msgstr ""
#: libraries/Advisor.class.php:378
#, php-format
-#| msgid "Invalid format of CSV input on line %d."
msgid "Invalid rule declaration on line %s"
msgstr "Nieprawidłowa deklaracja reguły w linii %s"
@@ -2385,8 +2377,8 @@ msgstr "Nieoczekiwane znaki w linii %s"
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-"Nieoczekiwane znaki w linii %1$s. Spodziewana zakładka, ale nie znaleziono \""
-"%2$s\""
+"Nieoczekiwane znaki w linii %1$s. Spodziewana zakładka, ale nie znaleziono "
+"\"%2$s\""
#: libraries/Advisor.class.php:425 server_status.php:956
msgid "per second"
@@ -2414,11 +2406,11 @@ msgstr "Istniejący plik konfiguracyjny (%s) nie jest czytelny."
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "Złe uprawnienia pliku konfiguracyjnego, nie powinien być zapisywalny!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Rozmiar czcionki"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Zbyt wiele komunikatów o błędach, niektóre nie są wyświetlane."
@@ -2426,12 +2418,12 @@ msgstr "Zbyt wiele komunikatów o błędach, niektóre nie są wyświetlane."
msgid "File was not an uploaded file."
msgstr "Plik nie został przesłanym plikiem."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Przesłany plik przekracza dyrektywę upload_max_filesize w pliku php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2439,27 +2431,27 @@ msgstr ""
"Przesłany plik przekracza dyrektywę MAX_FILE_SIZE, który został określony w "
"formularzu HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Przesłany plik był tylko częściowo przesłany."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Brakuje folderu tymczasowego."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Nie udało się zapisać pliku na dysk."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Nieznany błąd w przesyłania pliku."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2467,11 +2459,11 @@ msgstr ""
"Błąd podczas przenoszenia przesłanego pliku. Zobacz [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Błąd podczas przenoszenia plików na serwerze."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Nie można odczytać (przeniesiony) przesłanego pliku."
@@ -2485,7 +2477,7 @@ msgstr "Brak zdefiniowanego indeksu!"
msgid "Indexes"
msgstr "Indeksy"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2523,46 +2515,46 @@ msgstr ""
"Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać "
"usunięty."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Bazy danych"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serwer"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Wstaw"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operacje"
@@ -2641,13 +2633,13 @@ msgstr "Wtyczki"
msgid "Engines"
msgstr "Mechanizmy"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Błąd"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2655,7 +2647,7 @@ msgstr[0] "Zmodyfikowanych rekordów: %1$d."
msgstr[1] "Zmodyfikowanych rekordów: %1$d."
msgstr[2] "Zmodyfikowanych rekordów: %1$d."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2663,7 +2655,7 @@ msgstr[0] "Usuniętych rekordów: %1$d."
msgstr[1] "Usuniętych rekordów: %1$d."
msgstr[2] "Usuniętych rekordów: %1$d."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2707,45 +2699,43 @@ msgstr "Mechanizm %s został wyłączony dla tego serwera MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "nieznany status tabeli: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
-#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Źródło bazy danych '%s' nie zostało znalezione!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
-#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Docelowej bazy '%s' nie znaleziono!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Niewłaściwa baza danych"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Niewłaściwa nazwa tabeli"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabela %1$s ma nazwę zmienioną na %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Nie można zapisać preferencji UI tabeli"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2754,7 +2744,7 @@ msgstr ""
"Nie udało się czyszczenie preferencji tabeli UI (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2764,17 +2754,17 @@ msgstr ""
"Nie można zapisać \"%s\" własności UI. Wprowadzone zmiany nie będą trwałe po "
"odświeżeniu strony. Proszę sprawdzić, czy struktura tabeli została zmieniona."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
"Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Podgląd niedostępny."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "weź to"
@@ -2837,7 +2827,7 @@ msgstr ""
"do 9,223,372,036,854,775,807, jest niepodpisany zakres 0 do "
"18,446,744,073,709,551,615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2892,16 +2882,15 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Alias unikatowy BIGINT niepodpisane nie NULL AUTO_INCREMENT"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
-#| msgid "authored on %1$s by %2$s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Datę, obsługiwany jest zakres %1$s do %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
-msgstr "Data i godzina kombinacja zakresu obsługiwanych jest %1$ s %2$ s"
+msgstr "Data i godzina kombinacja zakresu obsługiwanych jest %1$s %2$s"
#: libraries/Types.class.php:317
msgid ""
@@ -2912,9 +2901,8 @@ msgstr ""
"03: 14: 07 UTC, przechowywane jako liczba sekund od epoki (1970-01-01 00: "
"00: 00 UTC)"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
-#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Czas, zakres jest %1$s do %2$s"
@@ -2934,13 +2922,13 @@ msgstr ""
"O stałej długości (0-255, domyślnie 1) ciąg znaków, który jest zawsze prawo "
"dopełnione spacjami do podanej długości podczas przechowywania"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
-"Ciąg znaków o zmiennej długości (% s) efektywna długość maksymalna jest z "
+"Ciąg znaków o zmiennej długości (%s) efektywna długość maksymalna jest z "
"zastrzeżeniem maksymalny rozmiar wiersza"
#: libraries/Types.class.php:327
@@ -2951,7 +2939,7 @@ msgstr ""
"Kolumna tekstu o maksymalnej długości 255 (2 ^ 8 - 1) znaków przechowywanych "
"z prefiksem jednobajtowych wskazujące długość wartości w bajtach"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2965,8 +2953,7 @@ msgid ""
"stored with a three-byte prefix indicating the length of the value in bytes"
msgstr ""
"Kolumna tekstu o maksymalnej długości 16,777,215 (2 ^ 24 - 1) znaków "
-"przechowywanych z prefiksem trzybajtowy wskazujące długość wartości w "
-"bajtach"
+"przechowywanych z prefiksem trzybajtowy wskazujące długość wartości w bajtach"
#: libraries/Types.class.php:333
msgid ""
@@ -3024,8 +3011,7 @@ msgid ""
"bytes, stored with a four-byte prefix indicating the length of the value"
msgstr ""
"Kolumny obiektu BLOB o maksymalnej długooci 4 294 967 295 lub 4GiB (2 ^ 32 - "
-"1) bajtów, przechowywane prefiksu czwartego bajtu, wskazując długość "
-"wartości"
+"1) bajtów, przechowywane prefiksu czwartego bajtu, wskazując długość wartości"
#: libraries/Types.class.php:347
msgid ""
@@ -3052,7 +3038,6 @@ msgid "A curve with linear interpolation between points"
msgstr "Krzywa z interpolacji liniowej pomiędzy punktami"
#: libraries/Types.class.php:357
-#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Wielokąt"
@@ -3072,33 +3057,31 @@ msgstr "Zbiór wielokątów"
msgid "A collection of geometry objects of any type"
msgstr "Zbiór obiektów geometrycznych dowolnego typu"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "Numeryczny"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Data i czas"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "Ciąg"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Przestrzenny"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "4-Bajtowa liczba całkowita, zakres jest-2,147,483,648 do 2 147 483 647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3106,23 +3089,23 @@ msgstr ""
"8-Bajtowa liczba całkowita, zakres jest-9,223,372,036,854,775,808 do "
"9,223,372,036,854,775,807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr "Liczba zmiennoprzecinkowa podwójnej precyzji domyślnego systemu"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "Prawda lub fałsz"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Alias unikatowy dla BIGINT NOT NULL AUTO_INCREMENT"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Przechowuje unikatowego identyfikatora (UUID)"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
@@ -3130,7 +3113,7 @@ msgstr ""
"Sygnatury czasowej, zakres jest ' 0001-01-01 00: 00: 00' UTC do \"9999-12-31 "
"23: 59: 59' UTC; TimeStamp(6) mogą być przechowywane w mikrosekundach"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@@ -3138,7 +3121,7 @@ msgstr ""
"Ciąg o długości zmiennej (0 do 65 535) używa binarne sortowania dla "
"wszystkich porównań"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
@@ -3146,7 +3129,7 @@ msgstr ""
"Kolumna BLOB o maksymalnej długości 65 535 (2 ^ 16 - 1) bajtów, "
"przechowywane prefiksu czwartego bajtu, wskazując długość wartości"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "Wyliczenie, wybrane z listy zdefiniowane wartości"
@@ -3218,21 +3201,21 @@ msgstr "Wybór serwera"
msgid "Cookies must be enabled past this point."
msgstr "Odtąd musi być włączona obsługa ciasteczek."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Konfiguracja zabrania logowania bez hasła (zobacz AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Brak aktywności przez co najmniej %s sekund, proszę zalogować się jeszcze raz"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Nie udało się zalogować na serwer MySQL"
@@ -3276,18 +3259,18 @@ msgstr "Tabele"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Dane"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Nadmiar"
@@ -3395,8 +3378,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "ang."
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Zapytanie SQL"
@@ -3406,144 +3389,144 @@ msgstr "Zapytanie SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL zwrócił komunikat: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Nie udało się połączyć z walidatorem SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Wyjaśnij SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Pomiń wyjaśnienie SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Bez kodu PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Utwórz kod PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Odśwież"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Pomiń sprawdzanie poprawności SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Weryfikacja SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Szybka edycja tego zapytania"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "W linii"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilowanie"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Nie"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dni, %s godzin, %s minut i %s sekund"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Brakuje parametru:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Początek"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Poprzednie"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Następne"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Koniec"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Przejście do bazy danych "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Kliknij, aby przełączać"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Wyszukaj w komputerze:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Wybierz katalog serwera WWW dla uploadu %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Brak plików do wysłania"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Wykonaj"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Drukuj"
@@ -3627,68 +3610,68 @@ msgstr "oba powyższe"
msgid "neither of the above"
msgstr "żadne z powyższych"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Liczba nie jest dodatnia"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Liczba nie jest nieujemna"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Nieprawidłowy numer portu"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Nieprawidłowa wartość"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Wartość musi być mniejsza bądź równa %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Brakuje danych dla %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "niedostępna"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" wymaga rozszerzenia \"%s\""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "import nie zadziała, brakuje funkcji (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "eksport nie powiedzie się, brakuje funkcji (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Walidator SQL jest wyłączony"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Nie znaleziono rozszerzenia SOAP"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maksimum %s"
@@ -3707,7 +3690,7 @@ msgid "Set value: %s"
msgstr "Ustaw wartość: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Przywróć wartość domyślną"
@@ -4011,7 +3994,7 @@ msgid "Character set of the file"
msgstr "Kodowanie znaków pliku"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4110,7 +4093,7 @@ msgstr "Etykieta klucza"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Typ MIME"
@@ -4234,8 +4217,8 @@ msgstr "Dostosuj domyślne opcje"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4671,15 +4654,21 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minimalna liczba tabel, aby wyświetlić okno filtra tabeli"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Minimalna liczba tabel, aby wyświetlić okno filtra tabeli"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
"Łańcuch znaków, który oddziela bazy danych na różne poziomy zagłębienia"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Separator struktury drzewa bazy danych"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4687,39 +4676,39 @@ msgstr ""
"Tylko wersja uproszczona. Wyświetlaj bazy danych w postaci drzewa (określone "
"przez separator zdefiniowany poniżej)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Wyświetla bazy danych w postaci drzewa"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Wyłącz, jeśli chcesz widzieć wszystkie bazy danych jednocześnie"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Użyj wersji uproszczonej"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maksymalny poziom zagłębienia tabeli"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Łańcuch znaków, który separuje tabele na różnych poziomach zagłębienia"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Separator poziomów tabeli"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "Adres URL gdzie logo w ramce nawigacji będzie wskazywać na"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Odnośnik URL do logo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4727,38 +4716,38 @@ msgstr ""
"Otwieraj stronę w tym samym oknie ([kbd]main[/kbd]) lub w nowym oknie ([kbd]"
"new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Cel odnośnika logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Podświetla serwer po najechaniu kursorem myszy"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Włącz podświetlanie"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Maksymalna ilość ostatnio używanych tabel, ustaw 0 aby wyłączyć"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Ostatnio używane tabele"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Maksymalna liczba znaków pokazana w nie numerycznej kolumnie widoku "
"przeglądania"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Limit znaków w kolumnie"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4769,11 +4758,11 @@ msgstr ""
"że gdy korzysta się z więcej niż jednego serwera, łatwo zapomnieć wylogować "
"się z pozostałych."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Usuń wszystkie ciasteczka przy wylogowaniu"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4781,11 +4770,11 @@ msgstr ""
"Określa czy przy uwierzytelnianiu przez ciasteczka ma być przypominana "
"poprzednia nazwa użytkownika"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Przypominaj nazwę użytkownika"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4798,50 +4787,50 @@ msgstr ""
"przeglądarki. Takie rozwiązanie jest preferowane w środowisku niegodnym "
"zaufania."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Przechowywania ciasteczka logowania"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Jak długo (w sekundach) ważny będzie ciasteczko logowania"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Ważność ciasteczka logowania"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Większe pole edycji dla pola LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Większe pole edycji dla pola LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Maksymalna liczba pokazywanych znaków zapytania SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Maksymalna pokazywana długość SQL"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Użytkownicy nie mogą ustawić wyższej wartości"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Maksymalna liczba baz danych pokazywanych w lewej ramce i na liście baz "
"danych"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Maksimum baz danych"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4851,19 +4840,19 @@ msgstr ""
"zestaw składa się z większej ilości wierszy, zostanie pokazany link "
"Poprzednie/Następne."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maksymalna liczba wierszy do wyświetlenia"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Maksymalna liczba tabel pokazywanych na liście tabel"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Maksimum tabel"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4871,11 +4860,11 @@ msgstr ""
"Wyłącz domyślne ostrzeżenie rozszerzenia mcrypt, które pojawia się przy "
"autoryzacji ciasteczkami"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "ostrzeżenie mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4883,44 +4872,44 @@ msgstr ""
"Ile pamięci może zaalokować skrypt, np. [kbd]32M[/kbd] ([kbd]0[/kbd] oznacza "
"brak limitu)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Limit pamięci"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "To są linki Edycja, Kopiuj i Usuń"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Gdzie wyświetlić linki wiersza tabeli"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Użyj naturalnego porządeku do sortowania nazw tabeli i bazy danych"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Naturalny porządek"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Użyj tylko ikon, tylko tekst lub obu"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Wygląd interfejsu paska nawigacji"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"użyj buforowania wyjścia GZip dla zwiększenia szybkości transferów HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Kompresja wyjścia GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4928,19 +4917,19 @@ msgstr ""
"[kbd]SMART[/kbd] - tj. malejącej dla kolumny, wpisz DATE, DATETIME i "
"TIMESTAMP, a rosnącej inaczej"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Domyslny porządek sortowania"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Użyć trwałych połączeń do bazy danych MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Trwałe połączenia"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4950,23 +4939,23 @@ msgstr ""
"jeśli którekolwiek z tabel do przechowywania konfiguracji phpMyAdmin nie "
"można znaleźć"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Wygląd interfejsu do operacji na tabeli"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Nie zezwalaj na BLOB i BINARNE kolumny z edycji"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Chroń kolumny binarne"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4976,112 +4965,112 @@ msgstr ""
"przechowywania konfiguracji). Jeśli jest wyłączona, to korzysta z JS-"
"procedury, aby wyświetlić historię zapytań (utracone przez zamknięte okna)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Permanentna historia zapytań"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Ile zapytań ma być przechowywanych w historii"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Długość historii zapytań"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Zakładka wyświetlana po otwarciu nowego okna zapytań"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Domyślna zakładka okna zapytań"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Wysokość pola zapytania (w pikselach)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Wysokość pola zapytania"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Szerokość pola zapytania (w pikselach)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Szerokość pola zapytania"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Wybierz funckje, które będą użyte do konwersji kodowania znaków"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Konwersja silnika"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Podczas przeglądania tabel, sortowanie każdej tabeli jest pamiętany"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Zapamiętaj sortowanie tabel"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Powtarzanie nagłówków każdej komórki X, [kbd]0[/kbd] wyłącza tę funkcję"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Powtórz nagłówki"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Zapisz wszystkie edytowane komórki naraz"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Katalog na serwerze, w którym będą zapisywane eksportowane pliki"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Katalog do zapisu"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Pozostaw puste, jeśli nie są używane"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Cel upoważnienia hosta"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Pozostaw puste, aby użyć wartości domyślnych"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Zasady autoryzacji Hosta"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Pozwól na logowanie bez hasła"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Pozwól na logowanie się roota"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "Nazwa Auth Realm wyświetlana podczas uwierzytelnienia HTTP Basic"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5091,19 +5080,19 @@ msgstr ""
"SweKey[/a]. Relatywna ścieżka do głównego katalogu phpMyAdmin, np. ./swekey."
"conf"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Plik konfiguracyjny SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Jaka metoda uwierzytelniania ma być użyta"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Typ uwierzytelniania"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5111,11 +5100,11 @@ msgstr ""
"Pozostaw puste, aby nie obsługiwać zakładek [a@http://wiki.phpmyadmin.net/"
"pma/bookmark]bookmark[/a]. Sugerowana nazwa: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabela zakładek"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5123,32 +5112,32 @@ msgstr ""
"Pozostaw puste, aby nie obsługiwać komentarzy i typów mime. Sugerowana "
"nazwa: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabela informacji o kolumnach"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Czy połączenie do serwera MySQL ma być kompresowane"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Kompresja połączenia"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić tcp"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Typ połączenia"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Hasło użytkownika monitorującego"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5157,11 +5146,11 @@ msgstr ""
"jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/controluser]"
"wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Użytkownik monitorujący"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5169,19 +5158,19 @@ msgstr ""
"Alternatywny hosta do trzymania konfiguracji magazynowania, pozostawić "
"puste, aby użyć już zdefiniowany host"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Kontrola hosta"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Zliczaj tabele podczas pokazywania listy bazy danych"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Zliczaj tabele"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5189,11 +5178,11 @@ msgstr ""
"Pozostaw puste, aby nie obsługiwać trybu projektowania. Sugerowana nazwa: "
"[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabela trybu projektowania"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5202,28 +5191,28 @@ msgstr ""
"tracker.php?aid=1849494]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]"
"MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Wyłącz używanie INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Jakie rozszerzenie PHP w obsłudze; należy użyć mysqli jeśli jest obsługiwane"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Rozszerzenie PHP do użycia"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Ukryj bazy danych pasujące do wyrażenia regularnego (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Ukryj bazy danych"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5231,23 +5220,23 @@ msgstr ""
"Pozostaw puste, aby nie obsługiwać historii zapytań SQL. Sugerowana nazwa: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabela historii zapytań SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Nazwa hosta na którym uruchomiony jest serwer MySQL"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Nazwa hosta serwera"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL wylogowania"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5255,19 +5244,19 @@ msgstr ""
"Ograniczenia Liczby preferencje tabeli, które są przechowywane w bazie "
"danych, najstarsze rekordy są automatycznie usuwane"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Maksymalna ilość preferencji tabeli do przechowywania"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Spróbuj połączyć się bez hasła"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Łącz się bez hasła"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5281,30 +5270,30 @@ msgstr ""
"wystarczy wpisać ich nazwiska w porządku i użyć [kbd]*[/kbd] na końcu by "
"pokazać resztę w porządku alfabetycznym."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Pokaż tylko wymienione bazy danych"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Pozostaw puste w przypadku innego niż config auth"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Hasło dla uwierzytelniania konfiguracji"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "Schemat PDF: strony tabeli"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5315,20 +5304,20 @@ msgstr ""
"pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: [kbd]"
"phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Nazwa bazy danych"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Port na którym nasłuchuje serwer MySQL, pole puste oznacza wartość domyślną"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Port serwera"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5336,11 +5325,11 @@ msgstr ""
"Pozostaw puste, by nie obsługiwać komentarzy i typów mime. Sugerowana nazwa: "
"[kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Ostatnio używane tabele"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5348,19 +5337,19 @@ msgstr ""
"Pozostaw puste, by nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/relation]"
"relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Tabela relacji"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Polecenie SQL do pobrania dostępnych baz danych"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Polecenie SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5368,44 +5357,44 @@ msgstr ""
"Zobacz przykład usługi pojedynczego logowania (Signon) [a@http://wiki."
"phpmyadmin.net/pma/auth_types#signon]authentication types[/a]"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Nazwa sesji usługi pojedynczego logowania (Signon)"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL usługi pojedynczego logowania (Signon)"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Gniazdko, na którym nasłuchuje serwer MySQL, pole puste oznacza wartość "
"domyślną"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Gniazdo serwera"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Aktywuj SSL do połączeń z serwerem MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Użyj SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Schemat PDF: współrzędne tabeli"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5413,11 +5402,11 @@ msgstr ""
"Tabela do opisu wyświetlania kolumn, pozostaw puste bez wsparcia; "
"zasugerował: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Wyświetlanie tabeli kolumn"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5425,11 +5414,11 @@ msgstr ""
"Pozostaw puste, by nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Preferencje UI tabeli"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5437,11 +5426,11 @@ msgstr ""
"Czy sprawoadanie DROP DATABASE IF EXISTS zostanie dodany jako pierwsza linia "
"w dzienniku podczas tworzenia bazy danych."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Dodaj DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5449,11 +5438,11 @@ msgstr ""
"Czy sprawoadanie DROP TABLE IF EXISTS zostanie dodany jako pierwsza linia w "
"dzienniku podczas tworzenia tabeli."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Dodaj DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5461,20 +5450,20 @@ msgstr ""
"Czy sprawozdanie DROP VIEW IF EXISTS zostanie dodany jako pierwsza linia w "
"dzienniku podczas tworzenia widoku."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Dodaj DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definiuje listę instrukcji automatycznego tworzenia używa dla nowych wersji."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Instrukcje do śledzenia"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5482,22 +5471,22 @@ msgstr ""
"Puste pole oznacza brak wsparcia śledzenia zapytań SQL, zaproponował: [kbd]"
"pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabela śledzenia zapytań SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Czy mechanizm śledzenia tworzy wersje dla tabel i widoków automatycznie."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Automatyczne tworzenie wersji"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5505,15 +5494,15 @@ msgstr ""
"Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. "
"Zasugerowano: [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabela przechowująca preferencje użytkowników"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Użytkownik dla konfiguracji uwierzytelniania"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5521,21 +5510,21 @@ msgstr ""
"Przyjazny opis serwera dla użytkownika. Pozostaw puste, aby wyświetlić nazwę "
"hosta."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Szczegółowa nazwa serwera"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie "
"(wiersze)\";"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Pozwól wyświetlać wszystkie wiersze"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5546,47 +5535,47 @@ msgstr ""
"pliku konfiguracyjnym. To nie ogranicza możliwości wykonania tego samego "
"polecenia bezpośrednio"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Pokaż formularz zmiany hasła"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Pokaż formularz tworzenia bazy danych"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Pokaż lub ukryj kolumny wyświetlające 'Znacznik czasu tworzenia' dla "
"wszystkich tabel"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Pokaż Znacznik czasu tworzenia"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Pokaż lub ukryj kolumny wyświetlające znaczniki czasu ostatniej aktualizacji "
"dla wszystkich tabel"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Pokaż ostatni znacznik czasu aktualizacji"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Pokaż lub ukryj kolumny wyświetlające Ostatni znacznik czasu sprawdzania dla "
"wszystkich tabel"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Pokaż Ostatni znacznik czasu sprawdzania"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5594,11 +5583,11 @@ msgstr ""
"Określa, czy typ opcji kierunku wyświetlania jest pokazywany podczas "
"przeglądania tabeli"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Pokaż kierunek wyświetlenia"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5606,27 +5595,27 @@ msgstr ""
"Określa czy typ pola powinny być początkowo wyświetlany w trybie edycji/"
"wstawiania"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Pokaż typy pól"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Wyświetla pola z funkcjami w trybie edycji/dodawania"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Pokaż pola z funkcjami"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Czy pokazywać podpowiedzi lub nie"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Pokaż podpowiedź"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5634,43 +5623,43 @@ msgstr ""
"Pokazuje odnośnik do [a@http://php.net/manual/function.phpinfo.php]phpinfo()"
"[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Pokaż odnośnik phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Pokaż szczegółowe informacje o serwerze MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Czy mają być pokazywane zapytania SQL generowane przez phpMyAdmina"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Pokaż zapytania SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Określa, czy pole zapytania, powinny pozostać na ekranie po jego złożeniu"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Zachowaj pole zapytania"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Pozwala wyświetlać statystyki bazy danych i tabeli (np. wykorzystanie "
"miejsca)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Pokaż statystyki"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5678,11 +5667,11 @@ msgstr ""
"Jeśli podpowiedzi są włączone i ustawiony jest komentarz do bazy danych, "
"zamienia komentarz i nazwę bazy danych"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Wyświetla komentarz do bazy danych zamiast jej nazwy"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5694,30 +5683,30 @@ msgstr ""
"['LeftFrameTableSeparator']. A więc tylko katalog jest nazywany jako alias, "
"a nazwa tabeli pozostaje niezmieniona"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Wyświetla komentarz do tabeli zamiast jej nazwy"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Wyświetla komentarz do tabeli w postaci podpowiedzi"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Zaznacza używane tabele i umożliwia pokazanie baz danych z zablokowanymi "
"tabelami"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Pomiń zablokowane tabele"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Wymaga włączenia walidatora SQL"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5727,7 +5716,7 @@ msgstr "Wymaga włączenia walidatora SQL"
msgid "Password"
msgstr "Hasło"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5735,11 +5724,11 @@ msgstr ""
"[strong]Ostrzeżenie:[/strong] wymaga zainstalowanego rozszerzenia PHP SOAP "
"lub PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Włącz walidator SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5747,22 +5736,22 @@ msgstr ""
"Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie [kbd]anonymous"
"[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Użytkownik"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Ostrzeżenie jest wyświetlane na stronie głównej, jeśli wykryte jest "
"rozszerzenie Suhosin"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Ostrzeżenie Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5770,11 +5759,11 @@ msgstr ""
"Rozmiar pola tekstowego (kolumny) w trybie edycji, wartość ta będzie "
"eksponowana zapytaniem SQL pola tekstowego (*2) i okna kwerendy (*1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Pole tekstu kolumn"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5782,31 +5771,31 @@ msgstr ""
"Wielkość pola textarea (wierszy) w trybie edycji. Wartość będzie powięszkona "
"dla zapytań SQL (*@) i okna zapytań (*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Wierszy w polu textarea"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Tytuł okna przeglądarki, gdy baza danych jest wybrana"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Tytuł okna przeglądarki, gdy nic nie jest zaznaczone"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Domyślny tytuł"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Tytuł okna przeglądarki, gdy serwer jest wybrany"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Tytuł okna przeglądarki, gdy tabela jest zaznaczona"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5818,30 +5807,30 @@ msgstr ""
"nagłówku HTTP_X_FORWARDED_FOR (X-Forwarded-For) przesłanym przez serwer "
"pośredniczący (proxy) 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
"Lista zaufanych adresów IP serwerów pośredniczących (proxy) dla reguł allow/"
"deny"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"Katalog na serwerze, do którego można przesyłać pliki w celu importowania"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Dodaj katalog"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Pozwól na przeszukiwanie całej bazy danych"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Użyj szukania bazy danych"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5849,27 +5838,27 @@ msgstr ""
"Gdy jest wyłączona, użytkownicy nie mogą ustawić jakichkolwiek opocji z "
"poniższych, niezależnie od wyboru po prawej stronie"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Włącz zakładkę Developerską w ustawieniach"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Sprawdź, czy jest nowsza wersja"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Włącza sprawdzanie czy są aktualizacje phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Sprawdzenie wersji"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5877,7 +5866,7 @@ msgstr ""
"Włącza format kompresji [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP"
"[/a] dla operacji importu i eksportu"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5898,89 +5887,89 @@ msgid "Signon authentication"
msgstr "Zarejestruj się na uwierzytelnianiu"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV przy użyciu LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Otwórz dokument arkusza kalkulacyjnego"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Szybko"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Dostosuj"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opcje eksportu bazy danych"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV dla MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Otwórz dokument tekstowy"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Nie można zainicjować połączenia biblioteki Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Nie można połączyć się z serwerem Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Nie można połączyć się z serwerem MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"Pomiń nazwę użytkownika podczas używania metody uwierzytelnienia z pliku "
"konfiguracyjnego"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"Pomiń nazwę sesji pojedynczego logowania (Signon) podczas używania metody "
"uwierzytelnienia Signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"Pomiń adres URL pojedynczego logowania Singon podczas używania metody "
"uwierzytelnienia Signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Pomiń użytkownika monitorującego phpMyAdmin podczas używania pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"Pomiń hasło użytkownika monitorującego phpMyAdmin podczas używania pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Nieprawidłowy adres IP: %s"
@@ -6000,7 +5989,7 @@ msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP."
msgid "possible deep recursion attack"
msgstr "możliwy głęboki atak rekurencji"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6008,15 +5997,15 @@ msgstr ""
"Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo "
"skonfigurowane)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Serwer nie odpowiada."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Szczegóły..."
@@ -6082,7 +6071,7 @@ msgstr "Utwórz tabelę"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nazwa"
@@ -6240,25 +6229,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Kodowanie konwersji:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s z %2$s gałęzi"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "brak gałęzi"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Zmiany Git"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "miejsce na %1$s dla %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "autorem %1$s dla %2$s"
@@ -6979,18 +6968,17 @@ msgid "Display MIME types"
msgstr "Wyświetl typy MIME"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Czas wygenerowania"
@@ -7210,15 +7198,7 @@ msgstr "Nie znaleziono danych do wizualizacji GIS."
msgid "GLOBALS overwrite attempt"
msgstr "Próba nadpisania GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Wynik SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Wygenerowany przez"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL zwrócił pusty wynik (zero wierszy)."
@@ -7318,7 +7298,7 @@ msgstr "Niewłaściwa suma kolumn w CSV w linii %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Nazwa tabeli"
@@ -7334,7 +7314,6 @@ msgstr "Ten moduł nie obsługuje skompresowanych importów!"
#: libraries/import/mediawiki.php:246
#, php-format
-#| msgid "Invalid format of CSV input on line %d."
msgid "Invalid format of mediawiki input on line: %s."
msgstr "Nieprawidłowy format danych wejściowych mediawiki w wierszu: %s."
@@ -7363,7 +7342,7 @@ msgstr "Plik kształtu ESRI"
#: libraries/import/shp.php:199
#, php-format
msgid "Geometry type '%s' is not supported by MySQL."
-msgstr "Geometria typ '% s' nie jest obsługiwany przez MySQL."
+msgstr "Geometria typ '%s' nie jest obsługiwany przez MySQL."
#: libraries/import/shp.php:360
#, php-format
@@ -7675,7 +7654,7 @@ msgstr "Tworzenie PDF-ów"
msgid "Displaying Column Comments"
msgstr "Wyświetl komentarze dla kolumn"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Sposób prezentacji danych"
@@ -7781,10 +7760,10 @@ msgid "Variable"
msgstr "Zmienna"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Wartość"
@@ -7847,7 +7826,7 @@ msgstr "Generuj hasło"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7884,8 +7863,8 @@ msgid "Edit event"
msgstr "Edytuj wydarzenie"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Błąd w przetwarzaniu wywołania"
@@ -7935,7 +7914,7 @@ msgstr "Po zakończeniu zachować"
msgid "Definer"
msgstr "Definiujący"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Definer musi znajdować się w formacie \"username@hostname\""
@@ -7993,7 +7972,7 @@ msgstr ""
"rozszerzenia 'mysqli', aby uniknąć problemów."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Nieprawidłowy typ procedury: %s"
@@ -8064,17 +8043,17 @@ msgstr "Rodzaj zabezpieczenia"
msgid "SQL data access"
msgstr "Dostęp SQL do danych"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Musisz podać nazwę procedury"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Nieprawidłowy kierunek \"%s\" podany dla parametru."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8082,19 +8061,19 @@ msgstr ""
"Należy podać długość/wartość parametrów procedury typu ENUM, SET, VARCHAR i "
"VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Należy podać nazwę i typ dla każdego parametru procedury."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Musisz podać poprawny typ wartości zwracanej do procedury."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Należy podać definicję procedury."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8102,22 +8081,22 @@ msgstr[0] "%d wiersz dotyczy ostatniego sprawozdania wewnątrz procedury"
msgstr[1] "%d wierszy dotyczy ostatniego sprawozdania wewnątrz procedury"
msgstr[2] "%d wierszy dotyczy ostatniego sprawozdania wewnątrz procedury"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Wynik wykonanych procedur %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Wykonaj procedurę"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Parametry procedury"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcja"
@@ -8292,7 +8271,7 @@ msgstr "Spis treści"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atrybuty"
@@ -8391,12 +8370,12 @@ msgid "Toggle scratchboard"
msgstr "Przełączanie scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nieznany język: %1$s."
@@ -8442,7 +8421,7 @@ msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s"
msgid "Run SQL query/queries on database %s"
msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Wyczyść"
@@ -8451,11 +8430,11 @@ msgstr "Wyczyść"
msgid "Columns"
msgstr "Kolumny"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Pamiętaj zapytanie SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Niech każdy użytkownik ma dostęp do tej zakładki"
@@ -8557,12 +8536,12 @@ msgstr ""
"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
"%sdokumentacji%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Śledzenie %s jest aktywne."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8574,7 +8553,7 @@ msgstr ""
"(\"\\\") lub pojedynczy cudzysłów (\"\") wśród tych wartości, należy "
"poprzedzić go odwrotnym ukośnikiem (np. '\\\\xyz' lub '\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8583,18 +8562,17 @@ msgstr ""
"cytowania odwrotnym ukośnikiem czy ujmowania w cudzysłowy, używając takiego "
"formatu: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
-#| msgid "Remove column(s)"
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Przenieść kolumnę"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8603,11 +8581,11 @@ msgstr ""
"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
"%sopisy transformacji%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opcje transformacji"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8619,72 +8597,71 @@ msgstr ""
"apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: '\\\\xyz' "
"lub 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Dane dla ENUM lub SET zbyt długie?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Więcej miejsca dla edycji"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Brak"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Zdefiniowana następująco:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Podstawowy"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Pełny tekst"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "pierwszy"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
-#| msgid "After %s"
msgid "after %s"
msgstr "po %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Dodaj %s kolumnę(y)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Musisz dodać co najmniej jedną kolumnę."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Mechanizm składowania"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definicja partycji"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Tabela szukania"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Edycja/Wstaw"
@@ -8849,11 +8826,11 @@ msgstr ""
"Preferencje są zapisywane tylko w bieżącej sesji. Przechowywanie ich na "
"stałe wymaga %skonfiguracja magazynowania phpMyAdmin%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Nie można zapisać konfiguracji"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8865,8 +8842,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Archiwum ZIP jest puste!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Błąd w archiwum ZIP:"
@@ -9045,16 +9022,22 @@ msgstr ""
msgid "No databases"
msgstr "Brak baz danych"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtr tabel wg nazwy"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtr tabel wg nazwy"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Utwórz tabelę"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Proszę wybrać bazę danych"
@@ -10209,7 +10192,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Pytania od uruchomienia: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Oświadczenia"
@@ -11467,13 +11450,13 @@ msgstr "Ignoruj błędy"
msgid "Show form"
msgstr "Pokaż formularz"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"URL wrapper ani CURL nie są dostępnie. Sprawdzenie wersji jest niemożliwe."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11481,15 +11464,15 @@ msgstr ""
"Odczytanie wersji nie udało się. Być może nie ma połączenia z Internetem lub "
"serwer aktualizacji nie odpowiada."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Otrzymano od serwera nieprawidłowy numer wersji"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Nie udało się zanalizować numeru wersji"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11498,11 +11481,11 @@ msgstr ""
"Używasz wersji Git, uruchomić [kbd]git pull[/kbd] :-)[br]Najnowsza stabilna "
"wersja to %s, wydana na %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Nowsza stabilna wersja nie jest dostępna"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11516,7 +11499,7 @@ msgstr ""
"protokole IP mogą nie być wiarygodne, jeśli Twój adres IP należy do ISP, w "
"którym tysiące użytkowników, w tym Ty, są podłączone."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11526,7 +11509,7 @@ msgstr ""
"klucz był generowany automatycznie dla Ciebie. Jest on używany do "
"szyfrowania plików cookie, nie trzeba o tym pamiętać."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11535,7 +11518,7 @@ msgstr ""
"%sKompresja bzip2 i dekompresja%s wymaga funkcji (%s), która nie jest "
"dostępna w tym systemie."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11543,12 +11526,12 @@ msgstr ""
"Wartość ta powinna być dwukrotnie sprawdzona aby mieć pewność iż ten katalog "
"jest zabezpieczony przed jakimkolwiek dostępem."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Ta %sopcja%s powinna być włączona, jeśli serwer WWW ją obsługuje."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11557,7 +11540,7 @@ msgstr ""
"%sKompresja Gzip i dekompresja%s wymaga funkcji (%s), która nie jest "
"dostępna w tym systemie."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11568,7 +11551,7 @@ msgstr ""
"losowe unieważnienie sesji, jeśli %ssession.gc_maxlifetime%s jest niższa niż "
"jego wartość (obecnie %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11578,7 +11561,7 @@ msgstr ""
"minut), co najwyżej. Wartości większa niż 1800 mogą stwarzać zagrożenie dla "
"bezpieczeństwa, takich jak personifikacji."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11588,7 +11571,7 @@ msgstr ""
"%sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania "
"muszą być ustawione na wartość mniejsza lub równa jej."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11601,7 +11584,7 @@ msgstr ""
"serwerów proxy. Jednak ochrona IP może nie być wiarygodna, czy IP należy do "
"ISP, w którym tysiące użytkowników, łącznie z Tobą, są podłączeni."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11616,7 +11599,7 @@ msgstr ""
"phpMyAdmin URL ma bezpośredni dostęp do panelu phpMyAdmin. Ustaw %styp "
"autoryzacji%s do [kbd]cookie[/kbd] lub [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11625,7 +11608,7 @@ msgstr ""
"%sZip compression%s wymaga funkcji (%s), która nie jest dostępna w tym "
"systemie."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11634,23 +11617,23 @@ msgstr ""
"%sDekompresja Zip%s wymaga funkcji (%s), która nie jest dostępna w tym "
"systemie."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Należy używać połączeń SSL, jeśli serwer bazy danych je obsługuje."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Należy użyć mysqli ze względu na wydajność."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Możesz umożliwić podłączenie do serwera bez hasła."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Klucz jest zbyt krótki, powinien mieć co najmniej 8 znaków."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne."
@@ -11658,8 +11641,8 @@ msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne."
msgid "Wrong data"
msgstr "Nieprawidłowe dane"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Przeglądaj zewnętrzne wartości"
@@ -11689,22 +11672,29 @@ msgstr "Wyświetl zapytanie SQL"
msgid "Validated SQL"
msgstr "Weryfikacje SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Wynik SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Wygenerowany przez"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemy z indeksami tabeli `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Nazwa"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabela %1$s została pomyślnie zmodyfikowana"
-#: tbl_alter.php:131
-#| msgid "The selected users have been deleted successfully."
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Kolumny przeniesiono pomyślnie."
@@ -11822,7 +11812,7 @@ msgstr "Wartość Y"
msgid "Table %s already exists!"
msgstr "Tabela %s już istnieje!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabela %1$s została utworzona."
@@ -12022,43 +12012,43 @@ msgstr "Usuń partycjonowanie"
msgid "Check referential integrity:"
msgstr "Sprawdź spójność powiązań:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Pokaż tabele"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Wykorzystanie przestrzeni"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Używanie"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektywne"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statystyka wiersza"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statycznie"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamiczny"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Długość wiersza"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Rozmiar wiersza"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Następny autoindeks"
@@ -12155,7 +12145,6 @@ msgid "Show more actions"
msgstr "Pokaż więcej akcji"
#: tbl_structure.php:621 tbl_structure.php:686
-#| msgid "Remove column(s)"
msgid "Move columns"
msgstr "Przenieś kolumny"
@@ -12348,29 +12337,29 @@ msgstr "Śledź te instrukcje manipulowania danymi:"
msgid "Create version"
msgstr "Utwórz wersję"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Wykonaj \"zapytanie wg przykładu\" (symbol wieloznaczny \"%\") dla dwóch "
"różnych kolumn"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Dodatkowe kryteria wyszukiwania"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "W tej kolumnie oznacz każdy punkt"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Maksymalna liczba wierszy do wykreślenia"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Przeglądaj/Edytuj punkty"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Jak korzystać"
diff --git a/po/pt.po b/po/pt.po
index c58cde9538..44c5e6042a 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-14 13:56+0200\n"
-"Last-Translator: Vítor Martins \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:05+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: portuguese \n"
"Language: pt\n"
"MIME-Version: 1.0\n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Mostrar tudo"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Número da página:"
@@ -39,30 +39,30 @@ msgstr ""
"browser encontram-se definidas para não permitir actualizações entre janelas."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Pesquisar"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Pesquisar"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Executar"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Comentário da Base de Dados: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Comentários da tabela"
@@ -124,14 +124,14 @@ msgstr "Comentários da tabela"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Coluna"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Coluna"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -156,9 +156,9 @@ msgstr "Tipo"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulo"
@@ -168,7 +168,7 @@ msgstr "Nulo"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Omissão"
@@ -177,18 +177,18 @@ msgstr "Omissão"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Links para"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Comentários"
@@ -199,11 +199,11 @@ msgstr "Comentários"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Não"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Sim"
msgid "View dump (schema) of database"
msgstr "Ver o esquema da base de dados"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada na base de dados."
@@ -254,16 +254,14 @@ msgid "The database name is empty!"
msgstr "O nome da base de dados está vazia!"
#: db_operations.php:311
-#, fuzzy, php-format
-#| msgid "Database %s has been renamed to %s"
+#, php-format
msgid "Database %1$s has been renamed to %2$s"
-msgstr "O nome da base de dados %s foi alterado para %s"
+msgstr "O nome da base de dados %1$s foi alterado para %2$s"
#: db_operations.php:315
-#, fuzzy, php-format
-#| msgid "Database %s has been copied to %s"
+#, php-format
msgid "Database %1$s has been copied to %2$s"
-msgstr "A base de dados %s foi copiada para %s."
+msgstr "A base de dados %1$s foi copiada para %2$s"
#: db_operations.php:443
msgid "Rename database to"
@@ -324,8 +322,8 @@ msgstr "Mudar para a Base de Dados copiada"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Editar ou exporta o esquema relacional (schema)"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +354,44 @@ msgstr "Editar ou exporta o esquema relacional (schema)"
msgid "Table"
msgstr "Tabela"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Registos"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Tamanho"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "em uso"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Criação"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Última actualização"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Última Verificação"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -450,7 +447,7 @@ msgstr "E"
#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587
msgid "Del"
-msgstr "Elim."
+msgstr "Elim"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
@@ -483,13 +480,13 @@ msgstr "Usar Tabelas"
msgid "SQL query on database %s :"
msgstr "Consulta SQL na base de dados %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Executar Consulta"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Acesso Negado"
@@ -516,17 +513,15 @@ msgid "Search results for \"%s \" %s:"
msgstr "Procurar resultados para \"%s \" %s:"
#: db_search.php:239
-#, fuzzy, php-format
-#| msgid "%s match inside table %s "
-#| msgid_plural "%s matches inside table %s "
+#, php-format
msgid "%1$s match inside table %2$s "
msgid_plural "%1$s matches inside table %2$s "
-msgstr[0] "%s resultado na tabela %s "
-msgstr[1] "%s resultados na tabela %s "
+msgstr[0] "%1$s resultado na tabela %2$s "
+msgstr[1] "%1$s resultados na tabela %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Procurar"
@@ -602,11 +597,11 @@ msgstr "A Vista %s foi eliminada"
msgid "Table %s has been dropped"
msgstr "A tabela %s foi eliminada"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Detecção de Alterações está activa."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Detecção de Alterações está desactivada."
@@ -620,7 +615,7 @@ msgstr ""
"%sdocumentação%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vista"
@@ -665,7 +660,7 @@ msgstr "Verificar tabelas com overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -674,17 +669,18 @@ msgid "Export"
msgstr "Exportar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Vista de impressão"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Limpa"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -727,15 +723,14 @@ msgid "Tracked tables"
msgstr "Tabelas em tracking"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Base de Dados"
@@ -753,7 +748,7 @@ msgstr "Actualizado"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Estado"
@@ -885,7 +880,7 @@ msgstr "Adicionar um ponto"
#: gis_data_editor.php:219 js/messages.php:328
msgid "Linestring"
-msgstr "Segmento de Reta "
+msgstr "Segmento de Reta"
#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
msgid "Outer Ring"
@@ -905,7 +900,7 @@ msgstr "Adicionar um anel interior"
#: gis_data_editor.php:265 js/messages.php:329
msgid "Polygon"
-msgstr "Polígono "
+msgstr "Polígono"
#: gis_data_editor.php:305 js/messages.php:335
msgid "Add a polygon"
@@ -945,13 +940,13 @@ msgstr "Mostrando Marcador"
msgid "The bookmark has been deleted."
msgstr "Marcador apagado com sucesso."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Não foi possível ler o ficheiro"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -977,7 +972,7 @@ msgid ""
"Cannot convert file's character set without character set conversion library"
msgstr ""
"Impossível converter o conjunto de caracteres do ficheiro sem a biblioteca "
-"de conversão "
+"de conversão"
#: import.php:414 libraries/display_import.lib.php:23
msgid "Could not load import plugins, please check your installation!"
@@ -985,7 +980,7 @@ msgstr ""
"Não foi possível carregar os import plugins, por favor verifique a sua "
"instalação!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Marcador %s criado"
@@ -1012,8 +1007,8 @@ msgstr ""
"significa que o phpMyAdmin não conseguirá terminar este import, sem que se "
"incremente os tempos de limite de php."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1035,10 +1030,9 @@ msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Os comandos \"DROP DATABASE\" estão inibidos."
#: js/messages.php:30
-#, fuzzy, php-format
-#| msgid "Do you really want to "
+#, php-format
msgid "Do you really want to execute \"%s\"?"
-msgstr "Confirma : "
+msgstr "Você realmente deseja executar \"%s\"?"
#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
msgid "You are about to DESTROY a complete database!"
@@ -1126,9 +1120,9 @@ msgid "Close"
msgstr "Fechar"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edita"
@@ -1152,7 +1146,7 @@ msgstr "Dados estáticos"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1163,12 +1157,12 @@ msgid "Other"
msgstr "Outros"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1251,13 +1245,13 @@ msgid "System swap"
msgstr "Swap do sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1315,27 +1309,27 @@ msgid "Connections"
msgstr "Ligações"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1375,9 +1369,9 @@ msgstr "Por favor adicione pelo menos uma variável à serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Nenhum"
@@ -1391,7 +1385,7 @@ msgstr "Pausar o monitor"
#: js/messages.php:143
msgid "general_log and slow_query_log are enabled."
-msgstr "general_log e slow_query estão ativos "
+msgstr "general_log e slow_query estão ativos."
#: js/messages.php:144
msgid "general_log is enabled."
@@ -1488,7 +1482,6 @@ msgstr "Diferencial"
#: js/messages.php:167
#, php-format
-#| msgid "Divided by %s:"
msgid "Divided by %s"
msgstr "Dividido por %s:"
@@ -1505,10 +1498,8 @@ msgid "From general log"
msgstr "Do registo geral"
#: js/messages.php:172
-#, fuzzy
-#| msgid "Loading logs"
msgid "Analysing logs"
-msgstr "Carregando registos"
+msgstr "Analisando os registos"
#: js/messages.php:173
msgid "Analysing & loading logs. This may take a while."
@@ -1549,10 +1540,8 @@ msgid "Jump to Log table"
msgstr "Saltar para a tabela de registos"
#: js/messages.php:180
-#, fuzzy
-#| msgid "No databases"
msgid "No data found"
-msgstr "Sem bases de dados"
+msgstr "Sem dados"
#: js/messages.php:181
msgid "Log analysed, but no data found in this time span."
@@ -1564,13 +1553,12 @@ msgid "Analyzing..."
msgstr "Em análise..."
#: js/messages.php:184
-#| msgid "Explain SQL"
msgid "Explain output"
msgstr "Explicar SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tempo"
@@ -1583,7 +1571,6 @@ msgid "Profiling results"
msgstr "Resultado(s) da(s) consulta(s)"
#: js/messages.php:189
-#| msgid "Table"
msgctxt "Display format"
msgid "Table"
msgstr "Tabela"
@@ -1593,14 +1580,13 @@ msgid "Chart"
msgstr "Mapa de Resultados"
#: js/messages.php:191
-#, fuzzy
msgid "Edit chart"
-msgstr "Adiciona novo campo"
+msgstr "Editar gráfico"
#: js/messages.php:192
#, fuzzy
msgid "Series"
-msgstr "Comando SQL"
+msgstr "Series"
#. l10n: A collection of available filters
#: js/messages.php:195
@@ -1655,7 +1641,6 @@ msgid "Affected rows:"
msgstr "Linhas afetadas:"
#: js/messages.php:210
-#| msgid "Failed parsing config file. It doesn't seem to be valid JSON code"
msgid "Failed parsing config file. It doesn't seem to be valid JSON code."
msgstr ""
"Falha ao processar ficheiro de configuração. Não parece ser código JSON "
@@ -1677,16 +1662,12 @@ msgid "Import"
msgstr "Importar"
#: js/messages.php:213
-#, fuzzy
-#| msgid "Local monitor configuration incompatible"
msgid "Import monitor configuration"
-msgstr "Configuração incompatível do monitor local"
+msgstr "Importar configuração do monitor"
#: js/messages.php:214
-#, fuzzy
-#| msgid "Please select the primary key or a unique key"
msgid "Please select the file you want to import"
-msgstr "Por favor seleccione a chave primária ou a chave única "
+msgstr "Por favor, selecione o ficheiro que deseja importar"
#: js/messages.php:216
msgid "Analyse Query"
@@ -1790,7 +1771,7 @@ msgstr "Inserir Tabela"
#: js/messages.php:255
msgid "Hide indexes"
-msgstr "Esconder índices "
+msgstr "Esconder índices"
#: js/messages.php:256
msgid "Show indexes"
@@ -1801,16 +1782,12 @@ msgid "Foreign key check:"
msgstr ""
#: js/messages.php:258 libraries/mult_submits.inc.php:321
-#, fuzzy
-#| msgid "Enabled"
msgid "(Enabled)"
-msgstr "Activado"
+msgstr "(Ativado)"
#: js/messages.php:259 libraries/mult_submits.inc.php:321
-#, fuzzy
-#| msgid "Disabled"
msgid "(Disabled)"
-msgstr "Desactidado"
+msgstr "(Desativado)"
#: js/messages.php:262
msgid "Searching"
@@ -1842,7 +1819,6 @@ msgstr "Editor ENUM/SET"
#: js/messages.php:273
#, php-format
-#| msgid "Values for the column \"%s\""
msgid "Values for column %s"
msgstr "Valores para a coluna \"%s\""
@@ -1851,7 +1827,6 @@ msgid "Values for a new column"
msgstr "Valores para a nova coluna"
#: js/messages.php:275
-#| msgid "Enter each value in a separate field."
msgid "Enter each value in a separate field"
msgstr "Introduza cada valor num campo separado."
@@ -1894,7 +1869,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1908,7 +1883,7 @@ msgstr "Esconder critérios de buca"
msgid "Show search criteria"
msgstr "Mostrar critérios de busca"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Pesquisa Avançada"
@@ -1986,7 +1961,7 @@ msgstr "Seleccione Foreign Key"
#: js/messages.php:343
msgid "Please select the primary key or a unique key"
-msgstr "Por favor seleccione a chave primária ou a chave única "
+msgstr "Por favor seleccione a chave primária ou a chave única"
#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
@@ -2002,7 +1977,7 @@ msgstr ""
#: js/messages.php:348
msgid "Add an option for column "
-msgstr "Adicionar uma opção para a coluna"
+msgstr "Adicionar uma opção para a coluna "
#: js/messages.php:351
msgid "Press escape to cancel editing"
@@ -2049,28 +2024,23 @@ msgstr ""
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-"Também pode editar algumas colunas clicando directamente no seu "
-"conteúdo."
+"Também pode editar algumas colunas clicando directamente no seu conteúdo."
#: js/messages.php:361
msgid "Go to link"
msgstr "Ir para a hiperligação"
#: js/messages.php:362
-#, fuzzy
-#| msgid "Column names"
msgid "Copy column name"
-msgstr "Nome dos Campos"
+msgstr "Copiar nome da coluna"
#: js/messages.php:363
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
#: js/messages.php:364
-#, fuzzy
-#| msgid "Showing rows"
msgid "Show data row(s)"
-msgstr "Mostrando registos "
+msgstr "Mostrar registo(s)"
#: js/messages.php:367
msgid "Generate password"
@@ -2081,16 +2051,14 @@ msgid "Generate"
msgstr "Gerar"
#: js/messages.php:369
-#| msgid "Change password"
msgid "Change Password"
msgstr "Alterar a palavra-passe"
#: js/messages.php:372 tbl_structure.php:467
-#| msgid "Mon"
msgid "More"
msgstr "Mais"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2114,13 +2082,11 @@ msgid "Done"
msgstr "Concluído"
#: js/messages.php:401
-#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Ant"
#: js/messages.php:406
-#| msgid "Next"
msgctxt "Next month"
msgid "Next"
msgstr "Próx"
@@ -2179,63 +2145,63 @@ msgid "December"
msgstr "Dezembro"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dez"
@@ -2273,74 +2239,67 @@ msgid "Sun"
msgstr "Domingo"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
#: js/messages.php:491
-#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
#: js/messages.php:493
-#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
#: js/messages.php:495
-#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
#: js/messages.php:497
-#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
#: js/messages.php:499
-#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
#: js/messages.php:501
-#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
#: js/messages.php:503
-#| msgid "Sat"
msgid "Sa"
msgstr "Sáb"
@@ -2356,7 +2315,6 @@ msgstr "Calendário-mês-ano"
#. l10n: Year suffix for calendar, "none" is empty.
#: js/messages.php:512
-#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Nenhum"
@@ -2451,11 +2409,11 @@ msgstr ""
"Permissões errada no ficheiro de configuração. Não deve ser editável por "
"todos!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Tamanho da fonte"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Excesso de mensagens de erro, algumas não serão mostradas."
@@ -2463,13 +2421,13 @@ msgstr "Excesso de mensagens de erro, algumas não serão mostradas."
msgid "File was not an uploaded file."
msgstr "O ficheiro não era carregável."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"O arquivo carregado excede o tamanho definido na directriz "
"'upload_max_filesize' no ficheiro php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2477,27 +2435,27 @@ msgstr ""
"O ficheiro enviado excede o tamanho definido na directriz 'MAX_FILE_SIZE' "
"que foi definido no formulário HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "O ficheiro foi apenas parcialmente carregado."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Pasta temporária não encontrada."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Falha ao salvar o ficheiro para o disco."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Carregamento do ficheiro parado pela extensão."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Erro desconhecido no upload do ficheiro."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2505,11 +2463,11 @@ msgstr ""
"Erro ao mover o arquivo carregado, veja [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Erro ao mover o arquivo enviado."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Não pode ler (movido) arquivo carregado."
@@ -2523,7 +2481,7 @@ msgstr "Nenhum indíce definido!"
msgid "Indexes"
msgstr "Índices"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2560,46 +2518,46 @@ msgid ""
msgstr ""
"Os Índices %1$s e %2$s parecem ser iguais ou um deles pode ter sido removido."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Base de Dados"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insere"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operações"
@@ -2682,27 +2640,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Erro"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d linha afectada."
msgstr[1] "%1$d linha(s) afectadas."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d linhas excluída."
msgstr[1] "%1$d linhas(s) excluídas."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2747,45 +2705,45 @@ msgstr "%s está desactivado neste servidor MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Este servidor MySQL não suporta o mecanismo de armazenamento %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
-msgstr "Estado da tabela desconhecido:"
+msgstr "Estado da tabela desconhecido: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Pesquisar na Base de Dados"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s não encontrado!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Base de Dados inválida"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Nome de tabela inválido"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Erro ao mudar o nome da tabela %1$s para %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabela %s renomeada para %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Não foi possível salvar as preferências de interface da tabela"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2794,7 +2752,7 @@ msgstr ""
"Falha ao limpar as preferências de interface da tabela (consulte $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2805,16 +2763,16 @@ msgstr ""
"serão constantes quando recarregar esta página. Favor verifique se a "
"estrutura da tabela foi alterada."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Encontrado caminho inválido para imagens do tema %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Nenhuma pré-visualização disponível."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "seleccionar"
@@ -2866,7 +2824,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2907,13 +2865,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Criar versão"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2924,7 +2882,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2942,7 +2900,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2955,7 +2913,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3054,77 +3012,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Criar um novo índice"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Segmento de Reta "
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Total"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3198,7 +3156,7 @@ msgstr "Escolha do Servidor"
msgid "Cookies must be enabled past this point."
msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3206,15 +3164,15 @@ msgstr ""
"A autenticação sem uma palavra-passe é proibida pela configuração (consulte "
"'AllowNoPassword')"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Sem actividade há %s segundos ou mais; Por favor, faça o login novamente"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Não é possível fazer login no servidor MySQL"
@@ -3258,18 +3216,18 @@ msgstr "Tabelas"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Dados"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Suspenso"
@@ -3382,8 +3340,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Comando SQL"
@@ -3393,147 +3351,144 @@ msgstr "Comando SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Mensagens do MySQL : "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Falha ao ligar ao validador SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Saltar Explicar SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "sem código PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Criar código PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Actualizar"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Saltar a validação SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validar SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%B-%Y às %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dias, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Parâmetros em falta:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Início"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
-#| msgid "Previous"
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
-#| msgid "Next"
msgctxt "Next page"
msgid "Next"
msgstr "Seguinte"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
-#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Fim"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar para a Base de Dados "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Clique para alternar"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Procurar no seu computador:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Selecionar a partir da directoria de upload do servidor %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Não é possivel alcançar a directoria que configurou para fazer upload"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Não existem arquivos para fazer upload"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Executar"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Imprimir"
@@ -3586,7 +3541,6 @@ msgstr "dados"
#: libraries/export/latex.php:60 libraries/export/mediawiki.php:42
#: libraries/export/odt.php:44 libraries/export/sql.php:155
#: libraries/export/texytext.php:38
-#| msgid "Structure and data"
msgid "structure and data"
msgstr "estrutura e dados"
@@ -3622,68 +3576,68 @@ msgstr "ambos acima"
msgid "neither of the above"
msgstr "nenhuma das acima"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Número não positivo"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Não é um número não-negativo"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Número de porta inválido"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Valor incorrecto"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "O valor precisa ser igual ou menor que %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Dados em falta para %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "indisponível"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" requer a extenção %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "Importação não irá funcionar, função (%s) em falta"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "exportação não vai funcionar, função (%s) em falta"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Validador SQL desactivado"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Extensão SOAP não encontrada"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "máximo %s"
@@ -3703,7 +3657,7 @@ msgid "Set value: %s"
msgstr "Definir valor: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Restaurar valor padrão"
@@ -3730,7 +3684,7 @@ msgid ""
"If enabled user can enter any MySQL server in login form for cookie auth"
msgstr ""
"Se o utilizador habilitador pode entrar em qualquer servidor MySQL num "
-"formulário de login para cookie de autenticação "
+"formulário de login para cookie de autenticação"
#: libraries/config/messages.inc.php:20
msgid "Allow login to any MySQL server"
@@ -3946,8 +3900,7 @@ msgstr "Mostrar conteúdo binário como HEX"
#: libraries/config/messages.inc.php:62
msgid "Show database listing as a list instead of a drop down"
msgstr ""
-"Mostrar listagem de bases de dados como uma lista em vez de um menu drop "
-"down"
+"Mostrar listagem de bases de dados como uma lista em vez de um menu drop down"
#: libraries/config/messages.inc.php:63
msgid "Display databases as a list"
@@ -4011,7 +3964,7 @@ msgid "Character set of the file"
msgstr "Configurar o Mapa de Caracteres do ficheiro"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formato"
@@ -4118,7 +4071,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-type"
@@ -4250,8 +4203,8 @@ msgstr "Opções de exportação da Base de Dados"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "Dados CSV"
@@ -4694,111 +4647,115 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
+msgid "String that separates databases into different tree levels"
+msgstr ""
+
+#: libraries/config/messages.inc.php:283
#, fuzzy
msgid "Database tree separator"
msgstr "Nome do ficheiro modelo"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "Tabelas sem tracking"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4806,453 +4763,453 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
#, fuzzy
msgid "Maximum databases"
msgstr "Sem bases de dados"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Limites do recurso"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Alterar a ordem da tabela por"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Janela de Query"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Janela de Query"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Janela de Query"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Renomeia a tabela para "
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Ligações"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Qualquer máquina"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Sem tablelas"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
#, fuzzy
msgid "PHP extension to use"
msgstr "versão do PHP"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Sem bases de dados"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Escolha do Servidor"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5261,371 +5218,371 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
msgid "Database name"
msgstr "Base de Dados"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Escolha do Servidor"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analizar tabela"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Reparar tabela"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Escolha do Servidor"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Mostrando comentários das Colunas"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Itens"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "Versão do servidor"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Mostra informação do PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Opções de exportação da Base de Dados"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Mostra tabelas"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Mostrar grelha"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Mostrar queries completos"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Esconder Caixa do query"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Estatísticas dos registos"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5633,29 +5590,29 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
#, fuzzy
msgid "Skip locked tables"
msgstr "Mostra tabelas"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5665,81 +5622,81 @@ msgstr ""
msgid "Password"
msgstr "Palavra-passe"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Utilizador :"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Adicionar/Remover Campos"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Defeito"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5747,59 +5704,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5820,82 +5777,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opções de exportação da Base de Dados"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "dados CSV para MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5915,21 +5872,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5994,7 +5951,7 @@ msgstr "Criar uma Página nova"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nome"
@@ -6182,26 +6139,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version"
msgid "committed on %1$s by %2$s"
msgstr "Criar versão"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version"
msgid "authored on %1$s by %2$s"
@@ -6440,7 +6397,7 @@ msgstr "na pesquisa"
#: libraries/display_tbl.lib.php:2838
msgid "Showing rows"
-msgstr "Mostrando registos "
+msgstr "Mostrando registos"
#: libraries/display_tbl.lib.php:2848
msgid "total"
@@ -6917,18 +6874,17 @@ msgid "Display MIME types"
msgstr "MIME-types disponíveis"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Máquina"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Data de Criação"
@@ -7139,15 +7095,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Resultado SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Gerado por"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL não retornou nenhum registo."
@@ -7242,7 +7190,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7365,7 +7313,7 @@ msgstr "Mapa de Caractere"
#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
#: tbl_change.php:612
msgid "Binary"
-msgstr "Binário "
+msgstr "Binário"
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
@@ -7607,7 +7555,7 @@ msgstr "Criação de PDFs"
msgid "Displaying Column Comments"
msgstr "Mostrando comentários das Colunas"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformação do navegador"
@@ -7706,10 +7654,10 @@ msgid "Variable"
msgstr "Variável"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Valor"
@@ -7769,7 +7717,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7807,8 +7755,8 @@ msgid "Edit event"
msgstr "Enviado"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Error in Processing Request"
@@ -7868,7 +7816,7 @@ msgstr "Instrucções de inserção completas"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7924,7 +7872,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8008,57 +7956,57 @@ msgstr "Tipo de Query"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
msgid "Execution results of routine %s"
msgstr "Permite criar novas tabelas."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funções"
@@ -8262,7 +8210,7 @@ msgstr "Índice"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributos"
@@ -8369,12 +8317,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8424,7 +8372,7 @@ msgstr "Executa comando(s) SQL na base de dados %s"
msgid "Run SQL query/queries on database %s"
msgstr "Executa comando(s) SQL na base de dados %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8435,11 +8383,11 @@ msgstr ""
msgid "Columns"
msgstr "Nome dos Campos"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Marcar este comando SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Deixar todos os utilizadores acederem a este marcador"
@@ -8457,7 +8405,7 @@ msgstr ""
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Mostrar de novo aqui este comando "
+msgstr "Mostrar de novo aqui este comando"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8539,13 +8487,13 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Detecção de Alterações está activa."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8563,25 +8511,25 @@ msgstr ""
"invertida (\"\\\") ou um apóstrofe (\"'\") entre esses valores, coloque uma "
"barra invertida antes (por exemplo '\\\\xyz' ou 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Índice"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Adicionar/Remover Campos"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8590,11 +8538,11 @@ msgstr ""
"Para uma lista de opções de transformação disponíveis e suas transformações "
"MIME-type , clique em %stransformation descriptions%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opções de tranformação"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8606,79 +8554,79 @@ msgstr ""
"\") ou uma pelica (\"'\") no meio desses valores, faça-o backslashes (por "
"exemplo '\\\\xyz' ou 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Nenhum"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primária"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Texto Completo"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Depois %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Adiciona novo campo"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Tem que escolher pelo menos uma coluna para mostrar"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "Operações"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Pesquisar"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8814,11 +8762,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8828,8 +8776,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9006,19 +8954,25 @@ msgstr ""
msgid "No databases"
msgstr "Sem bases de dados"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Alterar a ordem da tabela por"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Alterar a ordem da tabela por"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Criar uma Página nova"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Por favor seleccione uma base de dados"
@@ -9633,7 +9587,7 @@ msgstr "Privilégios específicos da tabela"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Nota: os nomes dos privilégios do MySQL são em Inglês "
+msgstr "Nota: os nomes dos privilégios do MySQL são em Inglês"
#: server_privileges.php:711
msgid "Administration"
@@ -9657,11 +9611,11 @@ msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite."
#: server_privileges.php:888
msgid "Login Information"
-msgstr "Informação de Login "
+msgstr "Informação de Login"
#: server_privileges.php:985
msgid "Do not change the password"
-msgstr "Mantendo a palavra-passe "
+msgstr "Mantendo a palavra-passe"
#: server_privileges.php:1037 server_privileges.php:2560
#, fuzzy
@@ -10206,7 +10160,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Itens"
@@ -11322,37 +11276,37 @@ msgstr ""
msgid "Show form"
msgstr "Mostrar côr"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11361,39 +11315,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11401,21 +11355,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11424,7 +11378,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11434,37 +11388,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11474,8 +11428,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Sem bases de dados"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11510,21 +11464,29 @@ msgstr "Mostrar queries completos"
msgid "Validated SQL"
msgstr "Validar SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Resultado SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Gerado por"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etiqueta"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Os utilizadores selecionado foram apagados com sucesso."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11538,7 +11500,7 @@ msgstr "Devido ao seu tamanho, este campo pode não ser editável "
#: tbl_change.php:860
msgid "Binary - do not edit"
-msgstr "Binário - não editar "
+msgstr "Binário - não editar"
#: tbl_change.php:1065
msgid "Insert as new row"
@@ -11657,7 +11619,7 @@ msgstr "Valor"
msgid "Table %s already exists!"
msgstr "O utilizador %s já existe!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "A tabela %s foi eliminada"
@@ -11792,7 +11754,7 @@ msgstr "Opções da tabela"
#: tbl_operations.php:362
msgid "Rename table to"
-msgstr "Renomeia a tabela para "
+msgstr "Renomeia a tabela para"
#: tbl_operations.php:544
msgid "Copy table to (database. table):"
@@ -11876,46 +11838,46 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Verificar Integridade referencial:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Mostra tabelas"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Espaço ocupado"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Utilização"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Em uso"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Estatísticas dos registos"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinâmico"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
#, fuzzy
msgid "Row length"
msgstr "Comprimento de linha"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Tamanho dos reg."
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12226,31 +12188,31 @@ msgstr ""
msgid "Create version"
msgstr "Criar versão"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Esconder critérios de buca"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
msgid "How to use"
msgstr "versão do PHP"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index d1012f6e24..0242996319 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-10 11:02+0200\n"
-"Last-Translator: Pedro Travassos \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:15+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: brazilian_portuguese \n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Mostrar tudo"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Número da página:"
@@ -39,30 +39,30 @@ msgstr ""
"configuradas para bloquear a comunicação entre janelas."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Procurar"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Procurar"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Executar"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Comentário do Banco de Dados: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Comentários da tabela"
@@ -124,14 +124,14 @@ msgstr "Comentários da tabela"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Coluna"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Coluna"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -156,9 +156,9 @@ msgstr "Tipo"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulo"
@@ -168,7 +168,7 @@ msgstr "Nulo"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Padrão"
@@ -177,18 +177,18 @@ msgstr "Padrão"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Links para"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Comentários"
@@ -199,11 +199,11 @@ msgstr "Comentários"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Não"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Sim"
msgid "View dump (schema) of database"
msgstr "Ver o esquema do Banco de Dados"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada no banco de dados."
@@ -322,8 +322,8 @@ msgstr "Mudar para o Banco de Dados copiado"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Editar ou exportar esquema relacional"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Editar ou exportar esquema relacional"
msgid "Table"
msgstr "Tabela"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Registros"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Tamanho"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "em uso"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Criação"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Última atualização"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Última verificação"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -481,13 +480,13 @@ msgstr "Usar tabelas"
msgid "SQL query on database %s :"
msgstr "Consulta SQL ao Banco de Dados %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Enviar consulta SQL"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Acesso negado"
@@ -521,8 +520,8 @@ msgstr[0] "%1$s resultado dentro da tabela %2$s "
msgstr[1] "%1$s resultados dentro da tabela %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Visualizar"
@@ -598,11 +597,11 @@ msgstr "Visão %s foi apagada"
msgid "Table %s has been dropped"
msgstr "Tabela %s foi eliminada"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Rastreamento está ativo."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Rastreamento não está ativo."
@@ -616,7 +615,7 @@ msgstr ""
"%sdocumentação%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Visão"
@@ -661,7 +660,7 @@ msgstr "Verificar sobre-carga"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -670,17 +669,18 @@ msgid "Export"
msgstr "Exportar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Visualização para impressão"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Limpar"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -723,15 +723,14 @@ msgid "Tracked tables"
msgstr "Tabelas rastreadas"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Banco de Dados"
@@ -749,7 +748,7 @@ msgstr "Atualizado"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -940,13 +939,13 @@ msgstr "Exibindo marcadores"
msgid "The bookmark has been deleted."
msgstr "O marcador foi removido."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "O arquivo não pode ser lido"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -978,7 +977,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Não foi possível carregar os plugins, verifique sua instalação!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Marcador %s criado"
@@ -1005,8 +1004,8 @@ msgstr ""
"que o phpMyAdmin não é capaz de finalizar essa importação à menos que você "
"aumente o tempo limite do PHP."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1116,9 +1115,9 @@ msgid "Close"
msgstr "Fechar"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Editar"
@@ -1142,7 +1141,7 @@ msgstr "Dado(s) estático(s)"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1153,12 +1152,12 @@ msgid "Other"
msgstr "Outro"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1241,13 +1240,13 @@ msgid "System swap"
msgstr "Área de Troca (Swap) do sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1305,27 +1304,27 @@ msgid "Connections"
msgstr "Conexões"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1371,9 +1370,9 @@ msgstr "Por favor adicione no mínimo uma variável à série"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Nenhum"
@@ -1504,7 +1503,6 @@ msgid "From general log"
msgstr "Do relatório geral"
#: js/messages.php:172
-#| msgid "Loading logs"
msgid "Analysing logs"
msgstr "Analisando relatorios"
@@ -1546,7 +1544,6 @@ msgid "Jump to Log table"
msgstr "Ir para a tabela de Log"
#: js/messages.php:180
-#| msgid "No databases"
msgid "No data found"
msgstr "Não existem dados"
@@ -1564,7 +1561,7 @@ msgstr "Demonstrar saída"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tempo"
@@ -1586,12 +1583,10 @@ msgid "Chart"
msgstr "Grafico"
#: js/messages.php:191
-#| msgid "Add index"
msgid "Edit chart"
msgstr "Editar grafico"
#: js/messages.php:192
-#| msgid "SQL queries"
msgid "Series"
msgstr "Series"
@@ -1676,7 +1671,6 @@ msgid "Import monitor configuration"
msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
#: js/messages.php:214
-#| msgid "Please select the primary key or a unique key"
msgid "Please select the file you want to import"
msgstr "Por favor, selecione o ficheiro que pretende importar"
@@ -1881,7 +1875,7 @@ msgstr "%d não é um número de linha válido."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1895,7 +1889,7 @@ msgstr "Ocultar critério de pesquisa"
msgid "Show search criteria"
msgstr "Exibir critério de pesquisa"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Zoom Pesquisa detalhada"
@@ -1989,7 +1983,7 @@ msgstr ""
#: js/messages.php:348
msgid "Add an option for column "
-msgstr "Adicionar uma opção para a coluna"
+msgstr "Adicionar uma opção para a coluna "
#: js/messages.php:351
msgid "Press escape to cancel editing"
@@ -2071,7 +2065,7 @@ msgstr "Alterar senha"
msgid "More"
msgstr "Mais"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2158,63 +2152,63 @@ msgid "December"
msgstr "Dezembro"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dez"
@@ -2252,32 +2246,32 @@ msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sab"
@@ -2422,11 +2416,11 @@ msgstr ""
"Erro de permissão no arquivo de configuração, não deve ser manipulado por "
"todos."
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Tamanho da fonte"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Muitas mensagens de erro, algumas não exibidas."
@@ -2434,13 +2428,13 @@ msgstr "Muitas mensagens de erro, algumas não exibidas."
msgid "File was not an uploaded file."
msgstr "Arquivo não era um arquivo carregado"
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"O arquivo carregado excede o tamanho definido na diretriz "
"upload_max_filesize no php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2448,27 +2442,27 @@ msgstr ""
"O arquivo enviado excede o tamanho definido na diretriz MAX_FILE_SIZE que "
"foi definido no formulário HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Carregamento do arquivo foi apenas parcial."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Pasta temporária não encontrada."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Falhou ao salvar arquivo no disco."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Carregamento do arquivo parado pela extenção."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Erro desconhecido no carregamento do arquivo."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2476,11 +2470,11 @@ msgstr ""
"Erro ao mover o arquivo carregado, veja [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Erro ao mover o arquivo enviado."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Não pode ler (mover) arquivo carregado."
@@ -2494,7 +2488,7 @@ msgstr "Nenhum índice definido!"
msgid "Indexes"
msgstr "Índices"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2532,46 +2526,46 @@ msgstr ""
"A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido "
"removida."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Banco de Dados"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Inserir"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operações"
@@ -2652,27 +2646,27 @@ msgstr ""
msgid "Engines"
msgstr "Engines"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Erro"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d linha afetada."
msgstr[1] "%1$d linha(s) afetadas."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d linhas excluída."
msgstr[1] "%1$d linhas(s) excluídas."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2717,44 +2711,44 @@ msgstr "%s está desabilitado neste servidor MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Esse servidor MySQL não suporta o stored engine %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
-msgstr "Status da tabela desconhecida"
+msgstr "Status da tabela desconhecida: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Procurar no Banco de Dados"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s não encontrado!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Banco de Dados inválido"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Nome de tabela inválida"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Erro ao renomear tabela %1$s para %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Table %1$s renomeada para %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Não foi possível salvar as preferências visuais da tabela"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2763,7 +2757,7 @@ msgstr ""
"Falha ao limpar as preferências da tabela UI (veja $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2774,16 +2768,16 @@ msgstr ""
"constantes depois que você recarregar esta página. Favor cheque se a "
"estrutura da tabela foi alterada."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Encontrado caminho inválido para imagens para o tema %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Nenhuma pré-visualização disponível."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "tome"
@@ -2835,7 +2829,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2876,13 +2870,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Criar versão %s de %s.%s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2893,7 +2887,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2911,7 +2905,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2924,7 +2918,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3023,77 +3017,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Criar um novo índice"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Linha"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Espacial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3165,7 +3159,7 @@ msgstr "Seleção do Servidor"
msgid "Cookies must be enabled past this point."
msgstr "Cookies devem estar ativos após este ponto."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3173,14 +3167,14 @@ msgstr ""
"Autenticação sem uma senha é proibida pela configuração (veja "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Sem atividade por %s segundos ou mais, faça o login novamente"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Não foi possível se logar no servidor MySQL"
@@ -3224,18 +3218,18 @@ msgstr "Tabelas"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Dados"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Sobrecarga"
@@ -3343,8 +3337,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "consulta SQL"
@@ -3354,145 +3348,145 @@ msgstr "consulta SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Mensagens do MySQL : "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Falha ao conectar ao validador SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Explicar SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Pular Explicação SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "sem código PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Criar código PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Atualizar"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Pular validação SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validar SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Na linha de edição da presente consulta"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "na linha"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Perfil"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d/%m/%Y às %T"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dias, %s horas, %s minutos e %s segundos"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Parâmetros perdidos:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Início"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Próximo"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Fim"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Ir para o Banco de Dados "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Clique para alternar"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Procurar no seu computador:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Selecionar a partir do diretório de upload do servidor %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"O diretório que você especificou para subir arquivos não foi encontrado"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Não existem arquivos para fazer upload"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Executar"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Imprimir"
@@ -3576,68 +3570,68 @@ msgstr "ambos acima"
msgid "neither of the above"
msgstr "nenhuma das acima"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Número não positivo"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Não é um número negativo"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Número de porta inválido"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Valor incorreto"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "O valor precisa ser igual ou menor que %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "dado faltante para %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "indisponível"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
-msgstr "\"%s\" requer a extenção %s "
+msgstr "\"%s\" requer a extenção %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "Importação não funcionou, função faltante (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "exportação não vai funcionar, faltando função (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Validador SQL desativado"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Extensão SOAP não encontrada"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "máximo %s"
@@ -3657,7 +3651,7 @@ msgid "Set value: %s"
msgstr "Definir valor: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Restaurar valor padrão"
@@ -3962,7 +3956,7 @@ msgid "Character set of the file"
msgstr "Conjunto de caracteres do arquivo"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formato"
@@ -4061,7 +4055,7 @@ msgstr "Rótulo da chave"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME type"
@@ -4187,8 +4181,8 @@ msgstr "Personalizar opções padrão"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4623,14 +4617,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Número mínimo de tabelas para mostrar a caixa de filtro de tabelas"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Número mínimo de tabelas para mostrar a caixa de filtro de tabelas"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "String que separa bancos de dados em diferentes níveis na árvore"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Divisor de árvore no banco de dados"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4638,40 +4638,40 @@ msgstr ""
"Somente versão light; exibe banco de dados em uma árvore (determinado pelo "
"divisor definido abaixo)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Exibe banco de dados em uma árvore"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
"Desabilite este se você quer ver todos os bancos de dados imediatamente"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Usar versão light"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Profundidade máxima da árvore da tabela"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "String que separa tabelas em diferentes níveis na árvore"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Divisor de árvore na tabela"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL onde o logo será colocado no frame de navegação"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Link URL do logo"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4679,39 +4679,39 @@ msgstr ""
"Abre a página lincada na janela principal ([kbd]principal[/kbd]) ou em uma "
"nova janela ([kbd]nova[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Alvo do link da logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Destaca servidor sob o cursor do mouse"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Habilita destaque"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Número máximo de tabelas usadas recentemente; defina 0 para desabilitar"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Tabelas recentemente utilizadas"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Número máximo de caracteres apresentados em qualquer coluna não-numérica à "
"mostra"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Limite de caracteres por coluna"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4722,11 +4722,11 @@ msgstr ""
"FALSO facilita esquecer de sair de outros servidores quando conectado à "
"vários servidores."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Remover todos os cookies quando sair"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4734,11 +4734,11 @@ msgstr ""
"Define se o login anterior deve ser recordado ou não no modo de autenticação "
"em cookie"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Recordar nome do usuário"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4749,52 +4749,52 @@ msgstr ""
"O valor 0 padrão determina que este existirá somente na sessão atual e será "
"apagado quando você fechar a janela do navegador."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Armazena cookie de login"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Define a duração (em segundos) da validade do cookie de login"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Validade do cookie de login"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Tamanho dobrado da caixa de texto para colunas LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Maior caixa de texto para LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
"Numero máximo de caracteres utilizados na exibição do resultado da consulta "
"SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Largura máxima do SQL exibido"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Usuários não podem definir um valor maior"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Número máximo de bancos de dados mostrados no quadro da esquerda na lista de "
"banco de dados"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Número máximo de bancos de dados"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4804,19 +4804,19 @@ msgstr ""
"conter mais linhas, "Anteriores" e "Próximos" links "
"serão apresentados."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Número máximo de linhas a exibir"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Número máximo de tabelas exibidas na lista de tabelas"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Número máximo de tabelas"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4824,11 +4824,11 @@ msgstr ""
"Desabilita o aviso padrão que é exibido se mcrypt está ausente para "
"autenticação por cookie"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "aviso do mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4836,43 +4836,43 @@ msgstr ""
"O número de bytes permitidos que um script pode alocar, ex. [kbd]32M[/kbd] "
"([kbd]0[/kbd] para sem limite)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Limite de memória"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Estes são os links de Editar, Copiar e Apagar"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Onde mostra os links da linha da tabela"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Use ordem natural para ordenar nomes de tabelas e bancos de dados"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Ordem natural"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Usar apenas ícones, apenas texto ou ambos"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Barra de navegação com ícones"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "Use o buffer de saída GZip para acelerar as transferências HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Buffer de saída GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4880,19 +4880,19 @@ msgstr ""
"[kbd]SMART[/kbd] - i.e. ordem decrescente para colunas do tipo TIME, DATE, "
"DATETIME e TIMESTAM; caso contrário, ordem ascendente."
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Ordem de ordenação padrão"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Usar conexões persistentes para bancos de dados MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Conexões persistentes"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4902,23 +4902,23 @@ msgstr ""
"dados Estrutura se alguma das tabelas requeridas da configuração do "
"phpMyAdmin não for encontrada"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabelas de configuração do phpMyAdmin perdidas"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Operações tabela ícones"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Desabilitar colunas BLOB e BINARY da edição"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Proteger colunas binárias"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4929,113 +4929,113 @@ msgstr ""
"utilizadas rotinas JS para exibir o histórico de consultas (que será perdido "
"se a janela for fechada)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Histórico de consultas permanente"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Quantas consultas são mantidas no histórico"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Tamanho do histórico de consultas"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Exibir Aba quando abrir uma nova janela de consulta"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Aba padrão da janela de consulta"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Altura da janela de consultas (em pixels)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Altura da janela de consultas"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Largura da janela de consultas (em pixels)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Largura da janela de consultas"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Selecione quais funções serão usadas para conversão do conjunto de caracteres"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Mecanismo de Recodificação"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Quando navegar por tabelas, a organização de cada tabela será lembrada"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Lembrar classificação da tabela"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Repetir cabeçalhos a cada X celulas, [kbd]0[/kbd] desativa esta configuração"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Repetir cabeçalhos"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Salvar todas a células editadas de uma vez"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Diretório / Pasta onde a exportação será salva no Servidor"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Diretório onde será Salvo"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Deixe em branco se não usado"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Pedido de autorização do Servidor"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Deixe em branco para padrão"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Regras de autorização do servidor"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Permitir login sem uma senha"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Permitir login como root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "Nome do Domínio quando fazendo autenticação http"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Domínio HTTP"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5045,19 +5045,19 @@ msgstr ""
"equipamento SweKey [/a] (não localizado na raiz do seu documento: sugestão: /"
"etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Arquivo de configuração Swekey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Método de autenticação para usar"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Tipo de autenticação"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5065,11 +5065,11 @@ msgstr ""
"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"bookmark[/a] suporte, sugestão: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabela de favoritos"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5077,31 +5077,31 @@ msgstr ""
"Deixe em branco quando não houver colunas de comentário/mime type, sugestão: "
"[kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "tabela de informação Coluna"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Conexão compactada ao servidor MySQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Conexão compactada"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Como conectar ao servidor, mantenha [kbd]tcp[/kbd] na dúvida"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Tipo de conexão"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Senha Usuário Controle"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5110,11 +5110,11 @@ msgstr ""
"informações disponíveis em [a@http://wiki.phpmyadmin.net/pma/controluser]wiki"
"[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Usuário Controle"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5122,19 +5122,19 @@ msgstr ""
"Um servidor alternativo para armazenar a configuração; deixe em branco para "
"usar um hosta já definido"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Host Controle"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Contador de tabelas quando exibindo lista banco de dados"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Contar tabelas"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5142,11 +5142,11 @@ msgstr ""
"Deixe em branco quando não há de Desenho, sugestão: [kbd]pma_designer_coords"
"[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "tabela de Desenho"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5154,28 +5154,28 @@ msgstr ""
"Mais informações em [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
"rastreador de bug [/a] e [a@http://bugs.mysql.com/19588]Bugs MySQL[/a]"
-#: libraries/config/messages.inc.php:393
-msgid "Disable use of INFORMATION_SCHEMA"
-msgstr "Desabilitar o uso do INFORMATION_SCHEMA "
-
#: libraries/config/messages.inc.php:394
+msgid "Disable use of INFORMATION_SCHEMA"
+msgstr "Desabilitar o uso do INFORMATION_SCHEMA"
+
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Qual extensão do PHP utilizar: você deveria utilizar mysqli se suportado"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Extensões PHP para utilizar"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Oculta bancos de dados com expressão regular combinada (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Ocultar bancos de dados"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5183,23 +5183,23 @@ msgstr ""
"Deixe em branco se não há suporte a histórico de consulta SQL, sugestão: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabela de histórico das consultas SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Servidor onde o MYSQL está rodando"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Nome do servidor (hostname)"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL de Logout"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5207,19 +5207,19 @@ msgstr ""
"Limitar o número de registros nas tabelas onde as preferências são "
"armazenadas, os registros mais antigos são automaticamente removidas"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Número máximo de tabelas das preferências para armazenar"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Tentando conectar sem senha"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Conectar sem senha"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5233,29 +5233,29 @@ msgstr ""
"entre seus nomes em ordem e use [kbd]*[/kbd] no final para exibir os "
"restantes em ordem alfabética."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Exibir apenas bancos de dados listados"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Deixe em branco se não usar config auth"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Senha para config auth"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Deixe em branco se não há suporte a PDF, sugestão: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "Esquema tabelas em Páginas PDF"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5265,19 +5265,19 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] para informação completa. "
"Deixe em branco se não houver suporte. Sugestão: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Nome do banco de dados"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "Porta na qual o servidor Mysql ouve, deixe em branco para padrão"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Porta do servidor"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5285,11 +5285,11 @@ msgstr ""
"Deixe em branco se não houver persistência recentemente usada entre as "
"sessões, sugestão: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Tabelas recentemente utilizadas"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5297,19 +5297,19 @@ msgstr ""
"Deixe em branco se não houver [a@http://wiki.phpmyadmin.net/pma/relation]"
"relation-links[/a] suporte, sugestão: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Tabela Relação"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Comando sql para ver bancos de dados disponíveis"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "comando SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5317,42 +5317,42 @@ msgstr ""
"Veja [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
"autenticação [/a] para exemplo"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Nome da sessão de Signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL de Signon"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "Socket (TCP) no qual o MYSQL está ouvindo, deixe em branco para padrão"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Socket do servidor"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Habilitar SSL para conexões no servidor MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Utilizar SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Deixe em branco se não houver suporte a esquema PDF, sugestão: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "Esquema PDF: tabela coordenadas"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5360,11 +5360,11 @@ msgstr ""
"Tabela que descreve a exibição de colunas, deixe em branco quando houver "
"suporte; sugestão: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Exibir colunas da tabela"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5372,11 +5372,11 @@ msgstr ""
"Deixe em branco se não houver tabelas persistentes UI nas preferências entre "
"sessões, sugestão: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Preferências visuais da tabela"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5384,11 +5384,11 @@ msgstr ""
"Quando o comando DROP DATABASE IF EXISTS deve ser adicionado como primeira "
"linha quando estiver criando o Banco de Dados."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Adicionar DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5396,11 +5396,11 @@ msgstr ""
"Quando um comando DROP TABLE IF EXISTS deve ser adicionado a primeira linha "
"quando estiver sendo criada uma tabela."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Adicionar DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5408,19 +5408,19 @@ msgstr ""
"Quando um comando DROP VIEW IF EXISTS deverá ser adicionado quando criando "
"uma view."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Adicionar DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "Define a lista de comandos que a auto-criação use para novas versões."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Comandos a rastrear"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5428,11 +5428,11 @@ msgstr ""
"Deixe em branco se não houver suporte a rastrear consultas SQL, sugestão: "
"[kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabela para rastrear consultas SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5440,11 +5440,11 @@ msgstr ""
"Quando o mecanismo de rastreamento cria versões de tabelas e visões "
"automaticamente."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Criar versões automáticamente"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5452,15 +5452,15 @@ msgstr ""
"Deixe em branco quando não houver preferência armazenamento no banco de "
"dados, sugestão: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Utilizar tabela de preferências de armazenamento"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Usuário para config de autorização"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5468,21 +5468,21 @@ msgstr ""
"Descrição amigável deste servidor. Deixe em branco para exibir o nome do "
"computador."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Nome completo deste servidor"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-"Quando precisa ser exibido a um usuário o botão "exiba todas(colunas)"
-"" "
+"Quando precisa ser exibido a um usuário o botão "exiba "
+"todas(colunas)""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Permitir mostrar todas as linhas"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5492,41 +5492,41 @@ msgstr ""
"kbd] modo de autenticação porque a senha está bem feita no arquivo de "
"configuração; isto não limita a habilidade de executar o comando diretamente"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Mostrar formulário de mudança de senha"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Mostrar formulário de criação de banco de dados"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Mostrar timestamp"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Mostrar ultima checagem timestamp"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5534,11 +5534,11 @@ msgstr ""
"Define se mostra ou não a opção de direção é mostrada quando navegar em uma "
"tabela"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Mostrar direção da tela"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5546,70 +5546,70 @@ msgstr ""
"Define se os tipos dos campos serão ou não exibidos inicialmente em mode "
"edição/inserção"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Exibir tipo dos campos"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Exibe os campos da função em modo de edição/inserção"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Mostra campos de função."
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Se uma dica será exibida ou não"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Exibir dica"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-"Exibe link para saída de [a@http://php.net/manual/function.phpinfo.php]"
-"phpinfo()[/a] "
+"Exibe link para saída de "
+"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Exibir link para o phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Exibir informações detalhadas do servidor MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Define se as consultas SQL geradas pelo phpMyAdmin devem ser exibidas"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Mostrar consultas SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Define se a caixa de consulta deve estar sobre a tela depois de sua submissão"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Manter caixa de consulta"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Permitir visualizar banco de dados e estatísticas da tabela (Utiliza espaço)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Mostrar estatísticas"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5617,11 +5617,11 @@ msgstr ""
"Se as dicas estão habilitadas e um comentário do banco de dados está "
"definido, isso vai virar o comentário e o nome real"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Exibir comentários dos bancos de dados ao invés do nomes"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5633,30 +5633,30 @@ msgstr ""
"['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo alias, "
"o nome da tabela continua inalterado"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Exibir comentários das tabelas ao invés dos nomes"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Mostrar comentários das tabelas nas dicas"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Marcar tabelas usadas e tornar possível mostrar bandos de dados com tabelas "
"bloqueadas"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Exibir tabelas bloqueadas"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Requer validador SQL para ser habilitado"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5666,7 +5666,7 @@ msgstr "Requer validador SQL para ser habilitado"
msgid "Password"
msgstr "Senha"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5674,11 +5674,11 @@ msgstr ""
"[strong]Aviso:[/strong] extensão PHP SOAP requerida ou PEAR SOAP deve ser "
"instalado"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Habilitar Validador SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5686,21 +5686,21 @@ msgstr ""
"Se você tiver um nome de usuário personalizado, especificá-lo aqui (o padrão "
"é [kbd]anônimo[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Usuário"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Um aviso é mostrado na página principal se uma falha de segurança é detectada"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Aviso do Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5708,11 +5708,11 @@ msgstr ""
"Tamanho do campo (colunas) em modo edição, o valor sera enfatizado para "
"queries SQL (*2) e para uma janela (*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Colunas da área de texto"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5721,31 +5721,31 @@ msgstr ""
"ampliado para as áreas de texto de consulta SQL (*2) e para janela de "
"consulta (*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Linhas da área de texto"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Titulo da janela quando o banco de dados está selecionado"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Titulo da janela quando nada está selecionado"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Título padrão"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titulo da janela quando o servidor é selecionado"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Título da janela quando uma tabela é selecionada"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5757,28 +5757,28 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxie 1.2.3.4:[br][kbd]"
"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista de proxies confiáveis por IP permitir/negar"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"Diretório no servidor onde você pode fazer upload de arquivos para importação"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Diretório de upload"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Permitir pesquisa no banco de dados inteiro"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Usar a pesquisa do banco de dados"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5786,28 +5786,28 @@ msgstr ""
"Quando desabilitado, usuários não podem selecionar nenhuma das opções "
"abaixo, independentemente da checkbox a direita."
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Habilitar aba Desenvolvedor nas configurações"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Verifique a última versão"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Habilitar checagem pela última versão na página principal do phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Verificação de versão"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5815,7 +5815,7 @@ msgstr ""
"Habilitar compressão [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/"
"a] para operações de importação e exportação"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5836,82 +5836,82 @@ msgid "Signon authentication"
msgstr "Autenticação signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV usando LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Planilha Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Rápido"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Personalizado"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opções de exportação do Banco de Dados"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV para dados MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Abrir Documento de Texto"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Não pode iniciar conexão com biblioteca Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Não foi possivel se conectar ao servidor Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Falha ao conectar com o servidor MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Endereço de IP incorreto: %s"
@@ -5932,7 +5932,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5942,16 +5942,16 @@ msgstr ""
"O servidor não está respondendo (ou o soquete do servidor local não está "
"configurado corretamente)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "O servidor não está respondendo."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
"Por favor verifique os privilégios do diretório que contém o banco de dados."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detalhes..."
@@ -6014,7 +6014,7 @@ msgstr "Criar tabela"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nome"
@@ -6185,26 +6185,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Codificação de conversão:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "Criar versão %s de %s.%s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6452,7 +6452,7 @@ msgstr "na consulta"
#: libraries/display_tbl.lib.php:2838
msgid "Showing rows"
-msgstr "Mostrando registros "
+msgstr "Mostrando registros"
#: libraries/display_tbl.lib.php:2848
msgid "total"
@@ -6941,18 +6941,17 @@ msgid "Display MIME types"
msgstr "MIME-type disponíveis"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Tempo de Geração"
@@ -7163,15 +7162,7 @@ msgstr "Não foram encontrados dados para a visualização GIS."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Resultado SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Gerado por"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou um conjunto vazio (ex. zero registros)."
@@ -7268,7 +7259,7 @@ msgstr "Contador de campo inválido na linha %d da entrada CSV."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Nome da Tabela"
@@ -7589,7 +7580,7 @@ msgstr "Sair"
#: libraries/navigation_header.inc.php:80
#: libraries/navigation_header.inc.php:82
msgid "phpMyAdmin documentation"
-msgstr "Documentação do phpMyAdmin "
+msgstr "Documentação do phpMyAdmin"
#: libraries/navigation_header.inc.php:92
#: libraries/navigation_header.inc.php:93
@@ -7634,7 +7625,7 @@ msgstr "Criação de PDFs"
msgid "Displaying Column Comments"
msgstr "Exibindo comentários da coluna"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformações do navegador"
@@ -7736,10 +7727,10 @@ msgid "Variable"
msgstr "Variáveis"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Valor"
@@ -7798,7 +7789,7 @@ msgstr "Gerar Senha"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7841,8 +7832,8 @@ msgid "Edit event"
msgstr "Editar servidor"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Erro no processamento da requisição"
@@ -7904,7 +7895,7 @@ msgstr "Inserções completas"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7969,7 +7960,7 @@ msgstr ""
"quaisquer problemas."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Tipo de rotina inválido: \"%s\""
@@ -8054,59 +8045,59 @@ msgstr "Segurança"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d linha afetada pela última instrução dentro do procedimento"
msgstr[1] "%d linhas afetadas pela última instrução dentro do procedimento"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Resultados da execução da rotina %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Executar rotina"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Rotinas"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Função"
@@ -8317,7 +8308,7 @@ msgstr "Tabela de conteúdos"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributos"
@@ -8424,12 +8415,12 @@ msgid "Toggle scratchboard"
msgstr "mudar o estado do Scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Linguagem desconhecida: %1$s."
@@ -8479,7 +8470,7 @@ msgstr "Rodar consulta(s) SQL no servidor %s"
msgid "Run SQL query/queries on database %s"
msgstr "Fazer consulta SQL no Banco de Dados %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Limpar"
@@ -8490,11 +8481,11 @@ msgstr "Limpar"
msgid "Columns"
msgstr "Nome das colunas"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Gravar essa consulta SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Deixar qualquer usuário acessar esse marcador"
@@ -8512,7 +8503,7 @@ msgstr "Delimitadores"
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "Mostrar esta consulta SQL novamente "
+msgstr "Mostrar esta consulta SQL novamente"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8594,13 +8585,13 @@ msgstr ""
"O Validador SQL não pode ser inicializado. Verifique se você instalou a "
"extensão necessária do php conforme está escrito na %sdocumentação%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Rastreamento está ativo."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8618,7 +8609,7 @@ msgstr ""
"(\"\\\") ou aspas simples (\"'\") entre os valores, coloque uma barra "
"contrária antes (por exemplo '\\\\xyz' ou 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8626,19 +8617,19 @@ msgstr ""
"Para valores padrão, digite um valor simples, sem barras de escape ou aspas, "
"use este formato: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Índice"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Remover coluna(s)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8647,11 +8638,11 @@ msgstr ""
"Para uma lista de opções de transformação disponíveis e suas transformações "
"MIME-type, clique em %sdescrição de transformações%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opções de transformação"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8663,79 +8654,79 @@ msgstr ""
"ou aspas (\"'\") no meio desses valores, faça-o usando outra contra-barra "
"(por exemplo '\\\\xyz' ou 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Nenhum"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Como definido:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primária"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Texto completo"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Depois %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Adicionar %s campo(s)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Você deve adicionar pelo menos um campo."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Storage Engine"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definição da PARTIÇÃO"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operador"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Procurar"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8915,13 +8906,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8931,8 +8922,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Nenhum arquivo encontrado dentro do arquivo ZIP!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Erro no arquivo ZIP:"
@@ -9121,20 +9112,26 @@ msgstr ""
msgid "No databases"
msgstr "Sem bases"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Alterar tabela ordenada por"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Alterar tabela ordenada por"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Criar tabela"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Selecionar um Banco de Dados"
@@ -9749,7 +9746,7 @@ msgstr "Privilégios específicos da tabela"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Nota: nomes de privilégios do MySQL são expressos em inglês "
+msgstr "Nota: nomes de privilégios do MySQL são expressos em inglês"
#: server_privileges.php:711
msgid "Administration"
@@ -10323,7 +10320,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Comandos"
@@ -11583,12 +11580,12 @@ msgstr "Ignorar erros"
msgid "Show form"
msgstr "Mostrar formulário"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11596,15 +11593,15 @@ msgstr ""
"Leitura de versão falhou. Você pode estar offline ou o servidor de "
"atualização não responde."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11613,11 +11610,11 @@ msgstr ""
"Se você estiver usando versão do Gir, execute [kbd]git pull[/kbd] :-)[br]A "
"versão estável mais nova é %s, lançada em %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Não existe nenhuma versão estável mais nova."
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11626,21 +11623,21 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11648,19 +11645,19 @@ msgstr ""
"Este valor deve ser verificado com atenção para garantir que este diretório "
"não seja acessado ou escrito por outros usuários no seu servidor."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Esta %sopção%s deveria estar habilitada se seu navegador tem suporter."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11668,21 +11665,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11691,7 +11688,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11701,7 +11698,7 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, fuzzy, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11710,7 +11707,7 @@ msgstr ""
"%sA compressão ZIP%s necessita de funções (%s) que não estão disponíveis no "
"seu sistema."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, fuzzy, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11719,25 +11716,25 @@ msgstr ""
"%sA descompressão ZIP%s necessita de funções (%s) que não estão disponíveis "
"no seu sistema."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it."
msgid "You should use SSL connections if your database server supports it."
msgstr "Você deveria utilizar conexões SSL se o seu servidor web suportar."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Você deveria utilizar mysqli por questões de desempenho."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Você permite a conexão com o servidor sem uma senha."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "A chave é muito curta, deveria ter pelo menos 8 caracteres."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais."
@@ -11747,8 +11744,8 @@ msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais."
msgid "Wrong data"
msgstr "Não existem dados"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Visualizar valores estrangeiros"
@@ -11778,21 +11775,29 @@ msgstr "Exibindo consulta SQL"
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Resultado SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Gerado por"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas com o índice da tabela `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Nome"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "A tabela %1$s foi alterada com sucesso"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11938,7 +11943,7 @@ msgstr "Valor"
msgid "Table %s already exists!"
msgstr "A tabela %s já existe!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "A tabela %1$s foi criada."
@@ -12151,45 +12156,45 @@ msgstr "Remover partição"
msgid "Check referential integrity:"
msgstr "Verificar integridade referencial:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Mostrar tabelas"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Uso do espaço"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Uso"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efetivo"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Estatísticas do registros"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "estático"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinâmico"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Tamanho do registro"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Tamanho do registro "
+msgstr "Tamanho do registro"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12512,31 +12517,31 @@ msgstr "Rastrear estas instruções de manipulação de dados:"
msgid "Create version"
msgstr "Criar versão"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Ocultar critério de pesquisa"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "PHP extension to use"
msgid "How to use"
@@ -12580,7 +12585,7 @@ msgstr "Nome da VISÃO"
#: view_operations.php:86
msgid "Rename view to"
-msgstr "Renomear a visão para "
+msgstr "Renomear a visão para"
#: libraries/advisory_rules.txt:49
msgid "Uptime below one day"
diff --git a/po/ro.po b/po/ro.po
index ad63737ae9..371a2b7014 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-15 00:52+0200\n"
-"Last-Translator: Alex Marin \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:15+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: romanian \n"
"Language: ro\n"
"MIME-Version: 1.0\n"
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Arată toate"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Numărul paginii:"
@@ -40,30 +40,30 @@ msgstr ""
"sistemului."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Caută"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Caută"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Execută"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Comentarii referitoare la baza de date: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Comentarii tabel"
@@ -125,14 +125,14 @@ msgstr "Comentarii tabel"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Coloană"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Coloană"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tip"
@@ -157,9 +157,9 @@ msgstr "Tip"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nul"
@@ -169,7 +169,7 @@ msgstr "Nul"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Setare de bază"
@@ -178,18 +178,18 @@ msgstr "Setare de bază"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Trimitere la"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Comentarii"
@@ -200,11 +200,11 @@ msgstr "Comentarii"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "Nu"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Da"
msgid "View dump (schema) of database"
msgstr "Vizualizarea schemei bazei de date"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Nu s-a găsit nici un tabel în baza de date."
@@ -323,8 +323,8 @@ msgstr "Schimbă la tabela copiată"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Editați sau exportați schema relațională"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "Editați sau exportați schema relațională"
msgid "Table"
msgstr "Tabel"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Linie"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Mărime"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "în folosință"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Creare"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Ultima actualizare"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Ultima verficare"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -486,13 +485,13 @@ msgstr "Utilizare tabele"
msgid "SQL query on database %s :"
msgstr "Comandă SQL pe baza de date %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Trimite comanda"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Acces interzis"
@@ -528,8 +527,8 @@ msgstr[1] "%s rezultat(e) în interiorul tabelului %s "
msgstr[2] "%s rezultat(e) în interiorul tabelului %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Navigare"
@@ -609,11 +608,11 @@ msgstr "Vizualizarea %s a fost eliminată"
msgid "Table %s has been dropped"
msgstr "Tabelul %s a fost aruncat"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Monitorizarea este activată."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Monitorizarea nu este activată."
@@ -626,7 +625,7 @@ msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vizualizare"
@@ -671,7 +670,7 @@ msgstr "Verificare depășit"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -680,17 +679,18 @@ msgid "Export"
msgstr "Exportă"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Vizualizare imprimare"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Golește"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -734,15 +734,14 @@ msgid "Tracked tables"
msgstr "Tabelele urmărite"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Baza de date"
@@ -760,7 +759,7 @@ msgstr "Actualizat(ă)"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Stare"
@@ -971,13 +970,13 @@ msgstr "Afișînd semn de carte"
msgid "The bookmark has been deleted."
msgstr "Eticheta a fost ștearsă."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Fișierul nu poate fi citit"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1008,7 +1007,7 @@ msgstr ""
"Nu au putut fi încărcate modulele adiționale de import, vă rog verificați "
"instalarea!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Semnul de carte %s a fost creat"
@@ -1030,8 +1029,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1150,9 +1149,9 @@ msgid "Close"
msgstr "Închide"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Editare"
@@ -1179,7 +1178,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
@@ -1190,12 +1189,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1283,13 +1282,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiO"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiO"
@@ -1355,27 +1354,27 @@ msgid "Connections"
msgstr "Conexiuni"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "octeți"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiO"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiO"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiO"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiO"
@@ -1424,9 +1423,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Nici unul(a)"
@@ -1623,7 +1622,7 @@ msgstr "Explică SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Timp"
@@ -1964,7 +1963,7 @@ msgstr "%d nu este un număr valid de rînduri."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1978,7 +1977,7 @@ msgstr "Ascunde criteriile de căutare"
msgid "Show search criteria"
msgstr "Afișează criteriile de căutare"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2168,7 +2167,7 @@ msgstr "Schimbare parolă"
msgid "More"
msgstr "Mai mult"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2261,27 +2260,27 @@ msgid "December"
msgstr "Decembrie"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Ian"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2289,37 +2288,37 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Iun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Iul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Noi"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dec"
@@ -2360,32 +2359,32 @@ msgid "Sun"
msgstr "Dum"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Joi"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Vin"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sâm"
@@ -2533,11 +2532,11 @@ msgstr ""
"Permisiuni greșite asupra fișierului de configurare, acesta nu ar trebui să "
"aibă permisiuni de scriere pentru oricine!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Dimensiune font"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Prea multe mesaje de eroare, unele nu sunt afișate."
@@ -2546,11 +2545,11 @@ msgstr "Prea multe mesaje de eroare, unele nu sunt afișate."
msgid "File was not an uploaded file."
msgstr "Fișierul nu a fost un fișier uploadat."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2558,27 +2557,27 @@ msgstr ""
"Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în "
"formularul HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Fișierul a fost încărcat numai parțial."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Lipsește un dosar temporar."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Eșec la scrierea fișierului pe disc."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Încărcarea fișierului a fost împiedicată de extensie."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Eroare necunoscută la încărcarea fișierului."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2586,11 +2585,11 @@ msgstr ""
"Eroare la mutarea fișierului încărcat, vezi [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Eroare la mutarea fișierului încărcat."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Nu se poate citi fișierul încărcat (și mutat)."
@@ -2604,7 +2603,7 @@ msgstr "Index nu este definit!"
msgid "Indexes"
msgstr "Indexuri"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2640,46 +2639,46 @@ msgid ""
"removed."
msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Baze de date"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Structură"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Inserare"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operații"
@@ -2759,13 +2758,13 @@ msgstr ""
msgid "Engines"
msgstr "Motoare"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Eroare"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2773,7 +2772,7 @@ msgstr[0] "%1$d rânduri afectate."
msgstr[1] "%1$d rând afectat."
msgstr[2] "%1$d rânduri afectate."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2781,7 +2780,7 @@ msgstr[0] "%1$d rînduri șterse."
msgstr[1] "%1$d rînd șters."
msgstr[2] "%1$d rînduri șterse."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2827,53 +2826,53 @@ msgstr "%s a fost dezactivat pentru acest server MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Acest server MySQL nu susține motorul de stocare %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "status tabel necunoscut: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Baza de date sursă"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Tema %s nu a fost găsită!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Bază de date nevalidă"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Denumire de tabel nevalidă"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Eroare la redenumirea tabelului %1$s în %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabelului %s i s-a dat un numele de %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2881,16 +2880,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Nici o previzualizare disponibilă."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "alege"
@@ -2942,7 +2941,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2983,12 +2982,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Creare relație"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2999,7 +2998,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3017,7 +3016,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3030,7 +3029,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3129,77 +3128,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Creează un nou index"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Linii terminate de"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Număr de fișiere-jurnal"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3274,13 +3273,13 @@ msgstr "Alegerea serverului"
msgid "Cookies must be enabled past this point."
msgstr "Trebuie sa aveti activat \"cookies\"."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3288,8 +3287,8 @@ msgstr ""
"Nu ați avut activitate de mai mult de %s secunde, vă rugăm să vă "
"autentificați din nou"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Nu pot face conexiunea catre serverul MySQL"
@@ -3334,18 +3333,18 @@ msgstr "Tabele"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Date"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Asupra"
@@ -3462,8 +3461,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Comanda SQL"
@@ -3473,86 +3472,86 @@ msgstr "Comanda SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL zice: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
#, fuzzy
msgid "Failed to connect to SQL validator!"
msgstr "Comprimă conexiunea la serverul MySQL"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Explică SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Sari peste explicarea SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "fără cod PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Creează cod PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Reîncarcă"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Sari peste validarea SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validează SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Motoare"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Creare profil"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dum"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y la %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s zile, %s ore, %s minute și %s secunde"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutine"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3560,7 +3559,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Începe"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3569,7 +3568,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3578,7 +3577,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Următorul"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3586,47 +3585,47 @@ msgctxt "Last page"
msgid "End"
msgstr "Sfîrșit"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Sari la baza de date "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Click pentru a selecta"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Caută în calculatorul tău:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "director de încărcare al serverului Web"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Directorul stabilit pentru încărcare nu poate fi găsit"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Nu sunt fișiere pentru încărcare"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Execută"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Listare"
@@ -3719,68 +3718,68 @@ msgstr "ambele de mai sus"
msgid "neither of the above"
msgstr "niciuna din cele de mai sus"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Nu este un număr pozitiv"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Nu este un număr ne-negativ"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Nu este un număr valid de port"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Valoare incorectă"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Valoarea trebuie să fie egală sau mai mică cu %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Date lipsă pentru %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "indisponibil"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" are nevoie de extensia %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "importarea nu va funcționa, lipsește o funcție (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "exportarea nu va funcționa, lipsește o funcție (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Validatorul SQL este dezactivat"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Extensia SOAP nu a fost găsită"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maxim %s"
@@ -3801,7 +3800,7 @@ msgid "Set value: %s"
msgstr "Seteaza valoarea: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Restaurează valoarea implicită"
@@ -4106,7 +4105,7 @@ msgid "Character set of the file"
msgstr "Setul de caractere al fișierului"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4211,7 +4210,7 @@ msgstr "Tasta label"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Tip MIME"
@@ -4340,8 +4339,8 @@ msgstr "Opțiuni de exportare a bazei de date"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4808,16 +4807,22 @@ msgstr "Numărul minim de tabele pentru a afişa caseta cu filtrul de tabele"
#: libraries/config/messages.inc.php:281
#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Numărul minim de tabele pentru a afişa caseta cu filtrul de tabele"
+
+#: libraries/config/messages.inc.php:282
+#, fuzzy
msgid "String that separates databases into different tree levels"
msgstr ""
"Șir de caractere care separă bazele de date în diferite niveluri ale "
"arborelui"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Separator arbore baze de date"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4825,42 +4830,42 @@ msgstr ""
"Doar versiunea light; afișează bazele de date într-un arbore (determinat de "
"separatorul definit mai jos)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Afișează bazele de date într-un arbore"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
"Dezactivați această opțiune dacă doriți să vizualizați toate bazele de date "
"simultan"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Folosiți versiunea light"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Adâncimea maximă a arborelui de tabele"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
"Șir de caractere care separă tabelele în diferite niveluri ale arborelui"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Separator arbore tabele"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL-ul către care va indica logo-ul din cadrul de navigare"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL-ul către care indică link-ul logo-ului"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
#, fuzzy
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
@@ -4869,40 +4874,40 @@ msgstr ""
"Deschide pagina link-ată în fereastra principală ([kbd]main[/kbd]) sau într-"
"o fereastră nouă ([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Ținta link-ului din logo"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Evidenţiaţi server-ul deasupra căruia se află cursorul mouse-ului"
# Activați evidențierea
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Activați highlighting-ul"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Numărul maxim de tabele recent folosite; setați 0 pentru dezactivare"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Tabele recent folosite"
# Numărul maxim de caractere afișate în orice coloană non-numerică în vederea de cautare
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Numărul maxim de caractere afișate în orice coloană non-numerică în view-ul "
"de browse"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Limitează caracterele de pe coloană"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4913,11 +4918,11 @@ msgstr ""
"la FALSE facilitează uitarea delogării de pe alte servere când ești conectat "
"la mai multe servere."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Șterge toate cookie-urile la delogare"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4925,11 +4930,11 @@ msgstr ""
"Definiți dacă logarea anterioară ar trebui să fie amintită sau nu în modul "
"de autentificare prin cookie-uri"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Amintește nume de utilizator"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4941,51 +4946,51 @@ msgstr ""
"curentă și va fi șters îndată ce se închide fereastra browser-ului. Acest "
"lucru este recomandat pentru mediile nesigure."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
#, fuzzy
msgid "Login cookie store"
msgstr "Locul de depozitarea al cookie-ului de login"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Definește cât timp (în secunde) un cookie de login este valid"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Validitatea cookie-ului de login"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Mărime dublă a textarea-ului pentru coloanele LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Textarea-uri mai mari pentru LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Numărul maxim de caractere folosite când se afișează o interogare SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Lungimea maximă de afișare SQL"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Utilizatorii nu pot seta o valoare mai mare"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Numărul maxim de baze de date afișate în cadrul din stânga și în lista de "
"baze de date"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Numărul maxim de baze de date"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4995,19 +5000,19 @@ msgstr ""
"de rezultate conține mai multe rânduri, link-urile de "Anterior" "
"și "Următor" vor fi afișate."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Numărul maxim de rânduri afișate"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Numărul maxim de tabele afișate în lista de tabele"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Numărul maxim de tabele"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -5015,11 +5020,11 @@ msgstr ""
"Dezactivează avertismentul implicit care este afișat dacă mcrypt lipsește "
"pentru autentificarea prin cookie-uri"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "avertisment mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -5027,49 +5032,49 @@ msgstr ""
"Numărul de bytes pe care un script are voie sa îl aloce, ex: [kbd]32M[/kbd] "
"([kbd]0[/kbd] pentru nicio limită)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Limita de memorie"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Acestea sunt link-urile de Editare, Copiere și Ștergere"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
#, fuzzy
msgid "Where to show the table row links"
msgstr "Unde să fie afișate link-urile din rândurile tabelelor"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
"Folosește ordinea naturală pentru sortarea numelor tabelelor și bazelor de "
"date"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Ordine naturală"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Folosește doar iconițe. doar text sau ambele"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
#, fuzzy
msgid "Iconic navigation bar"
msgstr "bară de navigare cu iconițe"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"folosește GZip output buffering pentru viteză mărită în transferurile HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
#, fuzzy
msgid "GZip output buffering"
msgstr "GZip output buffering"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -5077,19 +5082,19 @@ msgstr ""
"[kbd]SMART[/kbd] - adică ordine descrescătoare pentru coloane de tipul TIME, "
"DATE, DATETIME și TIMESTAMP, sau crescătoare altfel"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Ordine de sortare implicită"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Folosește conexiuni persistente la baze de date MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Conexiuni persistente"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
#, fuzzy
msgid ""
"Disable the default warning that is displayed on the database details "
@@ -5100,24 +5105,24 @@ msgstr ""
"structură ale bazei de date, dacă oricare dintre tabelele necesare pentru "
"stocarea configurării phpMyAdmin nu a putut fi găsită"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Tabele de stocare a configurării phpMyAdmin absente"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
#, fuzzy
msgid "Iconic table operations"
msgstr "Operații tabelare cu iconițe"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Nu permite editarea coloanelor BLOB și BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Protejează coloanele binare"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -5128,123 +5133,123 @@ msgstr ""
"folosesc funcții JS pentru afișarea istoriei interogprilor ( pierdute la "
"închiderea ferestrei )."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Istoric interogări permanent"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Câte interogări sunt ținute în istorie"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Lungimea istoriei de interogări"
# Fila afișată la deschiderea unei noi ferestre de interogare
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Tab-ul afișat la deschiderea unei noi ferestre de interogare"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
#, fuzzy
msgid "Default query window tab"
msgstr "Tab-ul implicit al interogării în fereastră"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Înălțimea (în pixeli) a ferestrei de interogări"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Înălțimea ferestrei de interogări"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Lățimea (în pixeli) a ferestrei de interogări"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Lățimea ferestrei de interogări"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Selectați care funcții vor fi folosite pentru conversia seturilor de "
"caractere"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Motor de înregistrare"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
"Când se vizualizează tabele, ordinea de sortare a fiecărui tabel este "
"reținută"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Reține sortarea tabelei"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Repetă header-ul la fiecare X celule, [kbd]0[/kbd] dezactivează această "
"opțiune"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Repetă header-ul"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Salvează toate câmpurile editate simultan"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Directoarele unde export-urile pot fi salvate pe server"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Directorul de salvări"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Lăsați gol dacă nu este folosit"
# Ordinea de autorizare a gazdelor
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Ordinea de autorizare a host-urilor"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Lăsați gol pentru valorile implicite"
# Reguli de autorizare a gazdelor
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Reguli de autorizare a host-urilor"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Permite logările fără parolă"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Permite autentificarea ca „root”"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
"Numele HTTP Basic Auth Realm ce va fi afișat când se face autentificarea HTTP"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
#, fuzzy
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5254,19 +5259,19 @@ msgstr ""
"autentificarea hardware SweKey [/a] (ce nu se află în rădăcină; sugestie: /"
"etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Fișierul de configurare SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Metoda de autentificare de utilizat"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Tipul autentificării"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5274,11 +5279,11 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport pentru [a@http://wiki.phpmyadmin."
"net/pma/bookmark]bookmark-uri[/a], sugestie: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabelul de bookmark-uri"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5286,34 +5291,34 @@ msgstr ""
"Lăsați necompletat dacă nu doriți comentarii pentru coloane/mime types, "
"sugestie: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabelul cu informații despre coloane"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Comprimă conexiunea la serverul MySQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Comprimă conexiunea"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Cum se realizează conexiunea la server, lăsați [kbd]tcp[/kbd] dacă nu "
"sunteți sigur"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Tipul conexiunii"
# Parola pentru utilizatorul de control
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Parola pentru control user"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5322,13 +5327,13 @@ msgstr ""
"informații găsiți pe [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
# Utilizator de control
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
#, fuzzy
msgid "Control user"
msgstr "Control user"
# O altă gazdă care să deţină stocarea configurației; lăsați necompletat pentru a utiliza gazda deja definită
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5337,19 +5342,19 @@ msgstr ""
"a utiliza host-ul deja definit"
# Gazdă de control
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Gazdă de control"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Numără tabelele când afișezi lista cu bazele de date"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Numără tabelele"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5357,11 +5362,11 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport pentru Designeri, sugestie: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabelul designeri"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5369,29 +5374,29 @@ msgstr ""
"Mai multe informații pe [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
"bug tracker[/a] și pe [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Dezactivează folosirea INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Ce extensii PHP să fie folosite; ar trebui să folosiți mysqli dacă este "
"suportat"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Extensia PHP de utilizat"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Ascunde bazele de date care respectă expresia regulată (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Ascunde baze de date"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5399,24 +5404,24 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport pentru istoricul interogărilor, "
"sugestie: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabelă istoric interogări SQL"
# Numele gazdei pe care rulează serverul MySQL
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Numele host-ului pe care rulează serverul MySQL"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Numele de gazdă al serverului"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL-ul pentru delogare"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5424,19 +5429,19 @@ msgstr ""
"Limitează numărul de preferințe ale tabelelor ce sunt stocate în baza de "
"date, cele mai vechi fiind automat înlăturate"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Numărul maxim de preferințe ale tabelelor de stocat"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Încearcă conectarea fără parolă"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Conectează fără parolă"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5450,19 +5455,19 @@ msgstr ""
"de date, doar introduceți numele lor în ordine și folosiți [kbd]*[/kbd] la "
"sfârșit pentru a afișa restul în ordine alfabetică."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Afișează doar bazele de date listate"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Lăsați gol dacă nu utilizați „config auth”"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Parola pentru „config auth”"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
#, fuzzy
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
@@ -5470,12 +5475,12 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
#, fuzzy
msgid "PDF schema: pages table"
msgstr "PDF schema: tabela de pagini"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5486,21 +5491,21 @@ msgstr ""
"complete. Lăsați necompletat dacă nu doriți suport. Sugestie: [kbd]phpmyadmin"
"[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "nume bază de date"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Portul serverului"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5508,11 +5513,11 @@ msgstr ""
"Lăsați necompletat dacă nu doriți tabele - în mod \"persistent\" - recent "
"folosite peste sesiuni, sugestie: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Tabel folosit recent"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5520,21 +5525,21 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a], sugestie: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Tabel relațional"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Comanda SQL pentru a obține bazele de date disponibile"
# comanda ARATĂ BAZELE DE DATE
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "comanda SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5542,35 +5547,35 @@ msgstr ""
"Vezi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] pentru un exemplu"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
#, fuzzy
msgid "Signon session name"
msgstr "Numele sesiunii signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
#, fuzzy
msgid "Signon URL"
msgstr "ULR-ul signon"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
#, fuzzy
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Soclul serverului"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
#, fuzzy
msgid "Enable SSL for connection to MySQL server"
msgstr "Comprimă conexiunea la serverul MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Utilizează SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
#, fuzzy
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
@@ -5578,11 +5583,11 @@ msgstr ""
"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF schema: coordonatele tabelului"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5590,13 +5595,13 @@ msgstr ""
"Tabelul care descrie coloanele de afișare, lăsați necompletat dacă nu doriți "
"suport; sugestie: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Afișează tabelul de coloane"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5605,11 +5610,11 @@ msgstr ""
"Interfeței cu Utilizatorul ale tabelului peste sesiuni, sugestie: [kbd]"
"pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Preferințele Interfeței cu Utilizatorul ale tabelului"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5617,11 +5622,11 @@ msgstr ""
"Dacă o declarație DROP DATABASE IF EXISTS va fi adăugată ca prima linie la "
"jurnal când se creează o bază de date."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Adaugă DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5629,11 +5634,11 @@ msgstr ""
"Dacă o declarație DROP DATABASE IF EXISTS va fi adăugată ca prima linie la "
"jurnal când se creează un tabel."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Adaugă DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5641,21 +5646,21 @@ msgstr ""
"Dacă o declarație DROP VIEW IF EXISTS va fi adăugată ca prima linie la "
"jurnal când se creează un view."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Adaugă DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definește lista de declarații pe care auto-crearea le folosește la "
"versiunile noi."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Declarații de urmărit"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5664,11 +5669,11 @@ msgstr ""
"sugestie: [kbd]pma_tracking[/kbd]"
# Tabelul de urmărire interogări SQL
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabelul de tracking interogări SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5676,13 +5681,13 @@ msgstr ""
"Dacă mecanismul de urmărire creează versiuni pentru tabele şi vizualizări în "
"mod automat."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Regim de recuperare automată"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5690,15 +5695,15 @@ msgstr ""
"Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în "
"baza de date, sugestie: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabelul de stocare a preferințelor utilizatorului"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Utilizator pentru „config auth”"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5707,19 +5712,19 @@ msgstr ""
"afişa numele de gazdă în loc."
# Numele "pe larg" al acestui server
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Numele \"verbose\" al acestui server"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Dacă unui utilizator să i se afișeze un buton \"show all\""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Permite afișarea tuturor rândurilor"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5730,44 +5735,44 @@ msgstr ""
"de configurare; nu se limitează capacitatea de a executa aceeaşi comandă "
"direct"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Arată formularul de schimbare a parolei"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Arată formularul de creare bază de date"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Arată informația PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Afișează stare sclav"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
#, fuzzy
msgid ""
"Defines whether or not type display direction option is shown when browsing "
@@ -5776,13 +5781,13 @@ msgstr ""
"Stabilește dacă opțiunea de afișare a direcției este afișată sau nu la "
"vizualizarea unui tabel"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Databases display options"
msgid "Show display direction"
msgstr "Opțiuni de afișare a bazelor de date"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5790,29 +5795,29 @@ msgstr ""
"Stabilește dacă să se afișeze inițial sau nu câmpurile de tip, în modul de "
"editare/inserare"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Afișează tipurile câmpurilor"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Afișează câmpurile de funcții în modul de editare/inserare"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Afișează câmpurile de funcții"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Dacă să se afișeze indiciul sau nu"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Arată indiciul"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5820,45 +5825,45 @@ msgstr ""
"Afișează link-ul către output-ul [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Afișează link-ul phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Afișează informații detaliate despre serverul MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"Defineşte dacă interogările SQL generate de phpMyAdmin ar trebui să fie "
"afişate"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Afișează interogările SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Defineşte dacă după submit, casuța de interogare ar trebui să rămână pe ecran"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Reține căsuța de interogare"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Permite afișarea statisticilor pentru baze de date și tabeluri (utilizarea "
"spaţiului de exemplu)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Afișează statistici"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5866,11 +5871,11 @@ msgstr ""
"Dacă ponturile sunt activate şi există un comentariu pentru baza de date, "
"aceasta va schimba între ele comentariul şi numele real"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Afișează comentariul bazei de date în loc de numele acesteia"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5882,31 +5887,31 @@ msgstr ""
"['LeftFrameTableSeparator'], astfel încât doar numele folder-ului va fi ca "
"alias-ul, numele tabelului rămânând neschimbat"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Afișează comentariul tabelului în loc de numele acestuia"
# Afișează comentariile tabelurilor în ponturi
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Afișează comentariile tabelurilor în tooltip-uri"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Marchează tabelele folosite și fă posibilă afișarea bazelor de date cu "
"tabele zăvorâte"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Sari peste tabelele zăvorâte"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Are nevoie de SQL Validator pentru a fi activată"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5916,7 +5921,7 @@ msgstr "Are nevoie de SQL Validator pentru a fi activată"
msgid "Password"
msgstr "Parola"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5924,11 +5929,11 @@ msgstr ""
"[strong]Atentie:[/strong] este necesara extensia PHP SOAP, sau PEAR SOAP "
"instalat"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Activati Validatorul SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5936,24 +5941,24 @@ msgstr ""
"Dacă aveți un nume de utilizator, specificați-l aici ( default este [kbd]"
"anonymous[/kbd] )"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Nume utilizator:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
#, fuzzy
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Un avertisment este afișat pe prima pagina dacă Suhosin este descoperit"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
#, fuzzy
msgid "Suhosin warning"
msgstr "Avertizare Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5962,11 +5967,11 @@ msgstr ""
"fi marită pentru textarea-urile de interogări SQL (*2) și pentru ferestrele "
"de interogări (*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Coloane textarea"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5975,31 +5980,31 @@ msgstr ""
"fi marită pentru textarea-urile de interogări SQL (*2) și pentru ferestrele "
"de interogări (*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Rânduri textarea"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Titlul ferestrei browser-ului când este selectată o bază de date"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "TItlul ferestrei browser-ului când nu este selectat nimic"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Titlu implicit"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titlul ferestrei browser-ului când este selectat un server"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Titlul ferestrei browser-ului când este selectat un tabel"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -6011,28 +6016,28 @@ msgstr ""
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) provenind de la proxy 1.2.3.4: [br]"
"[kbd] 1.2.3.4: HTTP_X_FORWARDED_FOR [/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista proxy-urilor de încredere pentru IP allow/deny"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Directorul de pe server unde puteți uploada fișiere pentru importare"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
#, fuzzy
msgid "Upload directory"
msgstr "Directorul de bază pentru date"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Permiteți căutarea în întreaga bază de date"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Folosiți căutarea în baza de date"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -6040,28 +6045,28 @@ msgstr ""
"Când este dezactivat, userii nu pot seta niciuna din opțiunile de mai jos, "
"indiferent de checkbox-ul din dreapta"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Activați tab-ul Developer în setări"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Verificați pentru ultima versiune"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Activați verificarea pentru ultima versiune pe pagina principală phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Verificarea versiunii"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -6069,7 +6074,7 @@ msgstr ""
"Activați compresia în format [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] pentru operațiile de import și export"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -6090,84 +6095,84 @@ msgid "Signon authentication"
msgstr "Autentificare Signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV folosind LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Foaie de calcul Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Rapid"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Culoare personalizată"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opțiuni de exportare a bazei de date"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "Date CSV pentru MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Text Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Nu am putut inițializa biblioteca de conexiune Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Conexiunea la server-ul Drizzle a eșuat"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Conexiunea la server-ul MySQL a eșuat"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Nume de utilizator gol la folosirea autentificării de tipul config"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Nume de sesiune signon gol la folosirea autentificării de tipul signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "URL signon gol la folosirea autentificării de tip signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Control user phpMyAdmin gol la folosirea pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Parolă control user phpMyAdmin goală la folosirea pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Adresă IP incorectă: %s"
@@ -6187,7 +6192,7 @@ msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP.
msgid "possible deep recursion attack"
msgstr "posibil atac adânc recursiv"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6195,19 +6200,19 @@ msgstr ""
"Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat "
"corect)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serverul nu răspunde"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
"Vă rugăm să verificați drepturile de acces ale directorului ce conține baza "
"de date."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detalii..."
@@ -6271,7 +6276,7 @@ msgstr "Creare tabel"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nume"
@@ -6456,25 +6461,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Versiunea clientului MySQL"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Creare relație"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Creare relație"
@@ -7242,18 +7247,17 @@ msgid "Display MIME types"
msgstr "Tipuri MIME disponibile"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Gazda"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Timp de generare"
@@ -7466,15 +7470,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Rezultat SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generat de"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL a dat un set de rezultate gol (zero linii)."
@@ -7571,7 +7567,7 @@ msgstr "Invalid field count in CSV input on line %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Denumire tabel"
@@ -7938,7 +7934,7 @@ msgstr "Creare PDF"
msgid "Displaying Column Comments"
msgstr "Arată comentariile coloanei"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformare navigator"
@@ -8039,10 +8035,10 @@ msgid "Variable"
msgstr "Variabil"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Valoare"
@@ -8103,7 +8099,7 @@ msgstr "Generează parolă"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -8141,8 +8137,8 @@ msgid "Edit event"
msgstr "Editează evenimentul"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Eroare în procesarea cererii"
@@ -8196,7 +8192,7 @@ msgstr "Inserări complete"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8256,7 +8252,7 @@ msgstr ""
"evita orice problemă."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8340,17 +8336,17 @@ msgstr "Tip de securitate"
msgid "SQL data access"
msgstr "Acces date SQL"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Trebuie să introduceți un nume de rutină"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Direcție invalidă \"%s\" dată pentru parametru."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8358,20 +8354,20 @@ msgstr ""
"Trebuie să oferiți lungime/valori pentru parametrii de tipul ENUM, SET, "
"VARCHAR și VARBINARY ai rutinei."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
"Trebuie să introduceți un nume și un tip pentru fiecare parametru al rutinei."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Rutina trebuie să întoarcă un tip valid."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Trebuie să introduceți o definiție a rutinei."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8379,22 +8375,22 @@ msgstr[0] "%d rând afectat de ultima declarație din cadrul procedurii"
msgstr[1] "%d rânduri afectate de ultima declarație din cadrul procedurii"
msgstr[2] "%d rânduri afectate de ultima declarație din cadrul procedurii"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Rezultatele execuției rutinei %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Executați rutina"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Parametrii rutinei"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funcție"
@@ -8599,7 +8595,7 @@ msgstr "Sumar"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Proprietăți"
@@ -8708,12 +8704,12 @@ msgid "Toggle scratchboard"
msgstr "dezactivare scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
-msgstr "ssd"
+msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Limbă necunoscută: %1$s."
@@ -8760,7 +8756,7 @@ msgstr "Execută interogare/interogări SQL pe serverul %s"
msgid "Run SQL query/queries on database %s"
msgstr "Execută interogare SQL asupra bazei de date %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8772,11 +8768,11 @@ msgstr "Calendar"
msgid "Columns"
msgstr "Denumirile coloanelor"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Pune semn de carte la această comandă SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
@@ -8874,13 +8870,13 @@ msgstr ""
"Validatorul SQL nu poate fi inițializat. Verificați dacă e instalată "
"extesnsia necesară PHP, așa cum e descris în %sdocumentation%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Monitorizarea este activată"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8898,7 +8894,7 @@ msgstr ""
"(backslash) (\"\\\") sau semnul (\"'\") la aceste valori, folosiți exemplul "
"( '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8906,19 +8902,19 @@ msgstr ""
"Pentru valorile implicite, vă rugăm să introduceți o singură valoare, fără "
"backslash, escape sau ghilimele, folosind formatul: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Index"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Adaugă/șterge coloane"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8927,11 +8923,11 @@ msgstr ""
"Pentru lista opțiunilor de transformare disponibile și transformările MIME-"
"type, apăsați pe %stransformation descriptions%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opțiuni de transformare"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8943,79 +8939,79 @@ msgstr ""
"sau apostrof (\"'\") in aceste valori, introduceți backslash-uri (ex. '\\"
"\\xyz' sau 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Nici unul(a)"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Conform definiției:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primar"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Tot textul"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "După %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Adaugă %s cîmp(uri)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Trebuie să adăugați cel puțin un cîmp."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Motor de stocare"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definiție PARTIȚIE"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operand"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Caută"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9223,13 +9219,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9239,8 +9235,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Niciun fișier nu a fost găsit în arhiva ZIP!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Eroare în arhiva ZIP:"
@@ -9426,20 +9422,26 @@ msgstr ""
msgid "No databases"
msgstr "Nu sînt baze de date"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "nume tabel"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "nume tabel"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Creare tabel"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Selectați baza de date"
@@ -10311,7 +10313,6 @@ msgstr "Nu s-a putut schimba master-ul"
#: server_replication.php:102
#, php-format
-#| msgid "The privileges were reloaded successfully."
msgid "Master server changed successfully to %s"
msgstr "Server master schimbat cu succes în %s"
@@ -10334,7 +10335,7 @@ msgid ""
"like to configure it?"
msgstr ""
"Acest server nu este configurat ca master într-un proces de replicare. "
-"Doriți să îl configurați ? "
+"Doriți să îl configurați ?"
#: server_replication.php:244
msgid "Master configuration"
@@ -10642,7 +10643,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Comenzi"
@@ -11779,38 +11780,38 @@ msgstr ""
msgid "Show form"
msgstr "Arată culoarea"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "A primit de la server un număr de versiune invalid"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
#, fuzzy
msgid "Unparsable version string"
msgstr "Şirul de caractere al versiunii nu este descifrabil."
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Nu este disponibilă nici o versiune stabilă nouă"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11819,39 +11820,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11859,21 +11860,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11882,7 +11883,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11892,37 +11893,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11932,8 +11933,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Nu sînt baze de date"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Caută printre valori necunoscute"
@@ -11967,21 +11968,29 @@ msgstr "Afișare interogare SQL"
msgid "Validated SQL"
msgstr "Validează SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Rezultat SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generat de"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleme cu indexul tabelului `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etichetă"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabelul %1$s a fost alterat cu succes"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12123,7 +12132,7 @@ msgstr "Valoare"
msgid "Table %s already exists!"
msgstr "Tabelul %s există deja!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabelul %1$s a fost creat."
@@ -12337,45 +12346,45 @@ msgstr "Elimină partiționarea"
msgid "Check referential integrity:"
msgstr "Verificarea integrității referinței:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Arată tabelele"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Utilizare spațiu"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Utilizare"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efectiv"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statisticile rîndului"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamic"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Lungime linie"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Mărime rând"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12688,30 +12697,30 @@ msgstr ""
msgid "Create version"
msgstr "Creare relație"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "Comanda SQL"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "PHP extension to use"
msgid "How to use"
diff --git a/po/ru.po b/po/ru.po
index 0e13529e49..4d1a1bd1cf 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-03 21:52+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: russian \n"
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Показать все"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Номер страницы:"
@@ -40,30 +40,30 @@ msgstr ""
"настроек безопасности."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Поиск"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Поиск"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Комментарий к базе данных: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Комментарий к таблице"
@@ -125,14 +125,14 @@ msgstr "Комментарий к таблице"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Поле"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Поле"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -157,9 +157,9 @@ msgstr "Тип"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -169,7 +169,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "По умолчанию"
@@ -178,18 +178,18 @@ msgstr "По умолчанию"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Связи"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Комментарии"
@@ -200,11 +200,11 @@ msgstr "Комментарии"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "Нет"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Да"
msgid "View dump (schema) of database"
msgstr "Отобразить дамп (схему) базы данных"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Таблиц в базе данных не обнаружено."
@@ -323,8 +323,8 @@ msgstr "Переключиться на скопированную базу да
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -344,8 +344,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Редакция или экспорт схемы связей"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -355,45 +355,44 @@ msgstr "Редакция или экспорт схемы связей"
msgid "Table"
msgstr "Таблица"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Строки"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Размер"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "используется"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Создание"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Последнее обновление"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Последняя проверка"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -484,13 +483,13 @@ msgstr "Использовать таблицы"
msgid "SQL query on database %s :"
msgstr "SQL-запрос к базе данных %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Выполнить запрос"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "В доступе отказано"
@@ -525,8 +524,8 @@ msgstr[1] "%1$s соответствия в таблице %2$s "
msgstr[2] "%1$s соответствий в таблице %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Обзор"
@@ -603,11 +602,11 @@ msgstr "Представление %s было удалено"
msgid "Table %s has been dropped"
msgstr "Таблица %s была удалена"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Слежение включено."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Слежение выключено."
@@ -621,7 +620,7 @@ msgstr ""
"Пожалуйста, обратитесь к %sдокументации%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Представление"
@@ -666,7 +665,7 @@ msgstr "Отметить требующие оптимизации"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -675,17 +674,18 @@ msgid "Export"
msgstr "Экспорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Версия для печати"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Очистить"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -728,15 +728,14 @@ msgid "Tracked tables"
msgstr "Отслеживаемые таблицы"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "База данных"
@@ -754,7 +753,7 @@ msgstr "Обновлён"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Состояние"
@@ -945,13 +944,13 @@ msgstr "Отображение закладки"
msgid "The bookmark has been deleted."
msgstr "Закладка удалена."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Ошибка при чтении файла"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -982,7 +981,7 @@ msgstr ""
"Отсутствуют модули импорта. Проверьте содержимое установленной копии "
"phpMyAdmin!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка "%s" создана"
@@ -1010,8 +1009,8 @@ msgstr ""
"означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, "
"пока не будет увеличено ограничение времени выполнения php-сценариев."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1120,9 +1119,9 @@ msgid "Close"
msgstr "Закрыть"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Изменить"
@@ -1146,7 +1145,7 @@ msgstr "Статические данные"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Всего"
@@ -1157,12 +1156,12 @@ msgid "Other"
msgstr "Другое"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1245,13 +1244,13 @@ msgid "System swap"
msgstr "Система подкачки"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "КБ"
@@ -1309,27 +1308,27 @@ msgid "Connections"
msgstr "Соединения"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Байт"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "ЭБ"
@@ -1369,9 +1368,9 @@ msgstr "Пожалуйста, добавьте в серию хотя бы од
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Нет"
@@ -1559,7 +1558,7 @@ msgstr "Анализ результатов"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Время"
@@ -1869,7 +1868,7 @@ msgstr "Число %d не является правильным номером
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1883,7 +1882,7 @@ msgstr "Скрыть параметры поиска"
msgid "Show search criteria"
msgstr "Отобразить параметры поиска"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Поиск с приближением"
@@ -2062,7 +2061,7 @@ msgstr "Изменить пароль"
msgid "More"
msgstr "Ещё"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2149,63 +2148,63 @@ msgid "December"
msgstr "Декабрь"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Дек"
@@ -2243,32 +2242,32 @@ msgid "Sun"
msgstr "Вс"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Сб"
@@ -2413,11 +2412,11 @@ msgstr ""
"На конфигурационный файл выставлены неверные права разрешающие запись для "
"всех!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Размер шрифта"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
"Слишком большое количество сообщений об ошибках, некоторые из которых не "
@@ -2427,13 +2426,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr "Файл не был загружен."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Размер загружаемого файла превышает значение директивы upload_max_filesize "
"установленное в конфигурационном файле PHP (php.ini)."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2441,27 +2440,27 @@ msgstr ""
"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, "
"определенной в HTML форме."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Загруженный файл был загружен только частично."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Не найден каталог для хранения временных файлов."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Ошибка при попытке записи файла на диск."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Загрузка файла остановлена из-за расширения."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "При время загрузке файла произошла неизвестная ошибка."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2469,11 +2468,11 @@ msgstr ""
"Ошибка при перемещении загруженного файла, смотрите [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Ошибка при перемещении загруженного файла."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Невозможно прочесть (переместить) загруженный файл."
@@ -2487,7 +2486,7 @@ msgstr "Индекс не определен!"
msgid "Indexes"
msgstr "Индексы"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2523,46 +2522,46 @@ msgid ""
"removed."
msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Базы данных"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Вставить"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Операции"
@@ -2641,13 +2640,13 @@ msgstr "Расширения"
msgid "Engines"
msgstr "Типы таблиц"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Ошибка"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2655,7 +2654,7 @@ msgstr[0] "Затронута %1$d строка."
msgstr[1] "Затронуто %1$d строки."
msgstr[2] "Затронуто %1$d строк."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2663,7 +2662,7 @@ msgstr[0] "Удалена %1$d строка."
msgstr[1] "Удалено %1$d строки."
msgstr[2] "Удалено %1$d строк."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2708,43 +2707,43 @@ msgstr "Тип таблиц %s был отключен на данном MySQL
msgid "This MySQL server does not support the %s storage engine."
msgstr "Данный сервер MySQL не поддерживает тип таблиц %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "Неизвестный статус таблицы: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "База данных `%s`, являющаяся источником, не найдена!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "База данных `%s`, являющаяся целевой, не найдена!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Некорректная база данных"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Неправильное имя таблицы"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Ошибка при переименовании таблицы %1$s в %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Таблица %1$s была переименована в %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Не получилось сохранить настройки интерфейса таблицы"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2753,7 +2752,7 @@ msgstr ""
"Ошибка при очистке таблицы содержащей настройки пользовательского интерфейса "
"(смотрите переменную $cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2764,16 +2763,16 @@ msgstr ""
"перезагрузки страницы, изменения интерфейса будут отменены. Пожалуйста, "
"проверьте изменена ли структура таблицы."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Не найден правильный путь к изображениям для темы %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Предпросмотр не доступен."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "Применить"
@@ -2836,7 +2835,7 @@ msgstr ""
"-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без "
"знака от 0 до 18,446,744,073,709,551,615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2890,12 +2889,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Псевдоним для BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Дата, поддерживаемый диапазон от %1$s до %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2910,7 +2909,7 @@ msgstr ""
"03:14:07\" UTC, содержит количество секунд прошедших со времени "
"(\"1970-01-01 00:00:00\" UTC)"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Время, диапазон от %1$s до %2$s"
@@ -2931,7 +2930,7 @@ msgstr ""
"Строка фиксированной длинны (0-255, по умолчанию 1), при хранении всегда "
"дополняется пробелами в конце строки до заданного размера"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2948,7 +2947,7 @@ msgstr ""
"Столбец типа TEXT с максимальной длинной 255 (2^8 - 1) символов, сохраняется "
"с одно-байтовым префиксом указывающим длину значения в байтах"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3066,38 +3065,38 @@ msgstr "Набор многоугольников"
msgid "A collection of geometry objects of any type"
msgstr "Набор геометрических объектов любого типа"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Создать индекс"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Линия"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Пространственный"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
"Четырех-байтовое целое число, диапазон от -2,147,483,648 до 2,147,483,647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3105,24 +3104,24 @@ msgstr ""
"Восьми-байтовое целое число, диапазон от -9,223,372,036,854,775,808 до "
"9,223,372,036,854,775,807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
"Изначальное системное значение двойной точности числа с плавающей точкой"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "True или false"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Псевдоним для BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Сохраняет Уникальный Универсальный Идентификатор (UUID)"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
@@ -3130,7 +3129,7 @@ msgstr ""
"Временная метка, диапазон от '0001-01-01 00:00:00' UTC до '9999-12-31 "
"23:59:59' UTC; TIMESTAMP(6) может хранить микросекунды"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@@ -3138,7 +3137,7 @@ msgstr ""
"Строка переменной длинны (0-65,535), использует для всех сравнений бинарное "
"сопоставление"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
@@ -3146,7 +3145,7 @@ msgstr ""
"Тип поля BLOB с максимальной длинной 65,535 (2^16 - 1) байт, сохраняется с "
"четырех-байтовым префиксом указывающим длину значения"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "Перечисление, выбор из списка определенных значений"
@@ -3218,21 +3217,21 @@ msgstr "Выбор сервера"
msgid "Cookies must be enabled past this point."
msgstr "Для полноценной работы необходима поддержка cookies браузером."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Вход без пароля запрещен при конфигурации (смотрите AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
"Отсутствие активности более %s секунд, пожалуйста, авторизуйтесь заново"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Невозможно подключиться к серверу MySQL"
@@ -3276,18 +3275,18 @@ msgstr "Таблицы"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Данные"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Фрагментировано"
@@ -3397,8 +3396,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-запрос"
@@ -3408,145 +3407,145 @@ msgstr "SQL-запрос"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Ответ MySQL: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Невозможно соединиться с SQL валидатором!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Анализ SQL запроса"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Убрать анализ SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Убрать PHP-код"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP-код"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Обновить"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Убрать проверку синтаксиса SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Проверка синтаксиса"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Быстрое редактирование запроса"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Быстрая правка"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Профилирование"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Вс"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y г., %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дней, %s часов, %s минут и %s секунд"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Отсутствующий параметр:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Начало"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Предыдущая"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Следующая"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Конец"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Перейти к базе данных "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Работа параметра "%s" подвержена ошибке, описание смотрите на %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Кликните для переключения"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Обзор вашего компьютера:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Выберите из каталога загрузки сервера %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Установленный каталог загрузки не доступен"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Файлы для загрузки отсутствуют"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Выполнить"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Печать"
@@ -3630,68 +3629,68 @@ msgstr "оба верхних варианта"
msgid "neither of the above"
msgstr "иначе, чем в вариантах выше"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Значение должно быть положительным числом"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Значение должно быть отрицательным числом"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Некорректно установлен номер порта"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Некорректное значение"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Значение должно быть больше или равно %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Отсутствуют данные для %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "недоступно"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "Для \"%s\" требуется расширение %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "импорт не будет функционировать без функции (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "экспорт не будет функционировать без функции (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL валидатор отключен"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Не найдено расширение SOAP"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "максимум %s"
@@ -3710,7 +3709,7 @@ msgid "Set value: %s"
msgstr "Установить значение: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Восстановить изначальное значение"
@@ -4017,7 +4016,7 @@ msgid "Character set of the file"
msgstr "Кодировка файла"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Формат"
@@ -4116,7 +4115,7 @@ msgstr "Идентификатор метки"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-тип"
@@ -4244,8 +4243,8 @@ msgstr "Настройте параметры экспорта использу
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4679,14 +4678,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Минимальное количество таблиц для отображения поля фильтра"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Минимальное количество таблиц для отображения поля фильтра"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Строка разделяющая базы данных на различные уровни дерева"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Разделитель дерева баз данных"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4694,39 +4699,39 @@ msgstr ""
"Только в облегченном варианте; отображать базы данных в виде дерева "
"(определяется указанием разделителя ниже)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Отображать базы данных в виде дерева"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Отключите данную функцию, если хотите видеть все базы данных сразу"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Облегченный вариант"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Максимальная глубина дерева таблиц"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Строка разделяющая таблицы на различные уровни дерева"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Разделитель дерева таблиц"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL на который будет ссылаться логотип из фрейма навигации"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL ссылка логотипа"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4734,40 +4739,40 @@ msgstr ""
"Открывать ссылку в основном окне ([kbd]main[/kbd]) или в новом ([kbd]new[/"
"kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Цель ссылки логотипа"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Подсвечивать сервер при наведении курсора"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Включить подсветку"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Максимальное количество недавно использованных таблиц; для отключения "
"установить 0"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Недавно использованные таблицы"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Максимальное количество символов отображаемых в любом нечисловом поле в "
"режиме обзора"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Ограничить по количеству символов в поле"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4778,11 +4783,11 @@ msgstr ""
"значения в FALSE можно легко забыть отключиться от других серверов при "
"множественном подключении."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Удалить все cookies при выходе"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4790,11 +4795,11 @@ msgstr ""
"Определяет необходимость выводить имя пользователя от предыдущего "
"подключения при использовании cookie идентификации"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Выводить имя пользователя"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4807,52 +4812,52 @@ msgstr ""
"закрытия окна браузера. Хранение в течении сессии рекомендуется для "
"использования в недружественном окружении."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Хранение cookie"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Определяет длительность (в секундах) действия cookie идентификации"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Срок действия cookie"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
"Двойное увеличение размера текстового поля для столбцов имеющих тип LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Увеличение текстового поля для LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
"Максимальное количество символов используемых при отображении SQL запроса"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Максимальная длинна отображаемого SQL"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Пользователи не смогут установить более высокое значение"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Максимальное количество баз данных отображаемых в левом фрейме и списке баз "
"данных"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Максимальное количество баз данных"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4861,19 +4866,19 @@ msgstr ""
"Количество строк при выводе результата запроса. Если строк больше, то будут "
"выведены ссылки перелистывания страниц."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Максимальное количество строк"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Максимальное количество таблиц отображаемых в списке"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Максимальное количество таблиц"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4881,11 +4886,11 @@ msgstr ""
"Отключить отображение предупреждения при отсутствии mcrypt, необходимого для "
"идентификации методом cookie"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "Предупреждение о mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4893,44 +4898,44 @@ msgstr ""
"Максимальное количество байт, которые могут быть выделены скрипту. Пример: "
"[kbd]32M[/kbd] ([kbd]0[/kbd] без ограничений)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Лимит памяти"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Ссылки редактирования, копирования и удаления"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Где вывести ссылки строки таблицы"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Использовать естественный порядок сортировки имен таблиц и баз данных"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Порядок сортировки"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Использовать только иконки, только текст, или все вместе"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Иконки в строке навигации"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"Используйте буферизацию вывода GZip для увеличения передачи данных по HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Буферизация вывода GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4938,19 +4943,19 @@ msgstr ""
"[kbd]SMART[/kbd] - означает обратный порядок сортировки для полей имеющих "
"тип TIME, DATE, DATETIME и TIMESTAMP; в ином случае порядок будет прямой"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Порядок сортировки"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Использовать постоянные соединения с базами данных MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Постоянные соединения"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4959,23 +4964,23 @@ msgstr ""
"Отключить предупреждение отображаемое на странице структуры базы данных при "
"отсутствии таблиц необходимых для хранения конфигурации phpMyAdmin"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Отсутствие таблиц хранения конфигурации phpMyAdmin"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Иконки операций над таблицами"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Запретить возможность редактирования данных полей типа BLOB и BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Защитить бинарные данные"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4985,115 +4990,115 @@ msgstr ""
"настройка расширений phpMyAdmin). При отключении, для истории запросов "
"используется JavaScript (история теряется при закрытии окна)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Постоянная история запросов"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Количество запросов хранимых в истории"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Длинна истории запросов"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
"Вкладка отображаемая при открытии нового всплывающего окна выполнения "
"запросов"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Вкладка по умолчанию для окна запросов"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Высота окна запроса (в пикселях)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Высота окна запроса"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Ширина окна запроса (в пикселях)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Ширина окна запроса"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Выберите функцию, которая будет использоваться при перекодировании"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Механизм перекодирования"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "При просмотре таблиц, запоминается сортировка каждой таблицы"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Запоминать сортировку таблиц"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Повторять заголовки через каждые X ячеек; [kbd]0[/kbd] отключает данную "
"функцию"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Повтор заголовков"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Сохранить все отредактированные ячейки сразу"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Каталог на сервере, в который можно сохранять файлы при экспорте"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Каталог сохранения"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Оставьте поле пустым, если не используете данную функцию"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Последовательность идентификации хоста"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Оставьте поле пустым для использования значения по умолчанию"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Правила идентификации хоста"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Разрешать подключения без пароля"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Разрешить вход под root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "Отображаемая строка при идентификации методом HTTP"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Область HTTP"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5103,19 +5108,19 @@ msgstr ""
"идентификации SweKey[/a] (пример, если располагается ниже корня хоста: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Конфигурационный файл SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Используемый метод идентификации"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Тип идентификации"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5123,11 +5128,11 @@ msgstr ""
"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/bookmark]закладок"
"[/a] оставьте поле пустым. Рекомендуется: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Таблица закладок"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5135,31 +5140,31 @@ msgstr ""
"Для отключения поддержки комментариев/mime-типов полей оставьте поле пустым. "
"Рекомендуется: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Таблица информации полей"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Соединение с сервером MySQL с использованием сжатия данных"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Соединение со сжатием"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Способ соединения с сервером. Если не уверены, оставьте [kbd]tcp[/kbd]"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Тип соединения"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Пароль выделенного пользователя"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5167,11 +5172,11 @@ msgstr ""
"Специальный пользователь MySQL с ограниченными привилегиями. Подробнее "
"смотрите на [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Выделенный пользователь"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5179,19 +5184,19 @@ msgstr ""
"Альтернативный хост для хранения настроек конфигурации; для использования "
"уже определенного хоста, оставьте пустым"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Контрольный хост"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "При выводе баз данных показывать количество таблиц в них"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Подсчитывать таблицы"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5199,11 +5204,11 @@ msgstr ""
"Для отключения поддержки Дизайнера Связей оставьте поле пустым. "
"Рекомендуется: [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Таблица Дизайнера"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5211,29 +5216,29 @@ msgstr ""
"Подробнее смотрите на [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
"bug tracker[/a] и [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Отключить использование INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Выберите какое расширение PHP использовать для работы с MySQL. При "
"возможности, используйте mysqli."
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP расширение"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Скрыть базы данных подпадающие под регулярное выражение (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Скрыть базы данных"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5241,23 +5246,23 @@ msgstr ""
"Для отключения поддержки истории SQL запросов оставьте поле пустым. "
"Рекомендуется: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Таблица истории SQL запросов"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Хост на котором работает сервер MySQL"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Хост сервера"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL выхода"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5265,21 +5270,21 @@ msgstr ""
"Ограничивает количество хранимых в базе данных свойств таблицы, устаревшие "
"автоматически удаляются"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Максимальное количество хранимых свойств таблицы"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
"Пытаться установить соединение без пароля, если пароль не был принят при "
"идентификации"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Соединять без пароля"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5294,30 +5299,30 @@ msgstr ""
"определенном порядке и использовать [kbd]*[/kbd] в конце для вывода "
"оставшихся в алфавитном порядке."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Показывать только базы данных из списка"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Если не используется идентификация config, оставьте поле пустым"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Прописанный пароль"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Для отключения поддержки PDF схемы оставьте поле пустым. Рекомендуется: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF схема: страницы таблицы"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5328,21 +5333,21 @@ msgstr ""
"pmadb[/a]. Для отключения поддержки, оставьте поле пустым. Рекомендуется: "
"[kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Имя базы данных"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Порт на котором работает сервер MySQL. Для значения по умолчанию, оставьте "
"пустым."
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Порт сервера"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5350,11 +5355,11 @@ msgstr ""
"Для отключения возможности просмотра недавно использованных таблиц, оставьте "
"поле пустым. Рекомендуется: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Недавно использованная таблица"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5363,19 +5368,19 @@ msgstr ""
"связанных таблиц[/a] оставьте поле пустым. Рекомендуется: [kbd]pma_relation[/"
"kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Таблица связей"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL команда для выборки доступных баз данных"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Команда SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5383,44 +5388,44 @@ msgstr ""
"Для примера смотрите раздел [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]типы идентификации[/a]"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Имя сессии для Signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Signon URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Сокет на котором работает сервер MySQL. Для значения по умолчанию, оставьте "
"пустым."
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Сокет сервера"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Использовать SSL для соединения с MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Использовать SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Для отключения поддержки PDF схемы оставьте поле пустым. Рекомендуется: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF схема: координаты таблиц"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5428,11 +5433,11 @@ msgstr ""
"Таблица для описания отображаемых полей. Для отключения поддержки данной "
"функции оставьте поле пустым. Рекомендуется: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Таблица с описаниями полей"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5440,11 +5445,11 @@ msgstr ""
"Для отключения возможности хранения настроек интерфейса таблиц, оставьте "
"поле пустым. Рекомендуется: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Таблица хранения настроек интерфейса"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5452,11 +5457,11 @@ msgstr ""
"Будет ли при создании базы данных, в журнал первой строкой добавлено "
"выражение DROP DATABASE IF EXISTS."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Добавить DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5464,11 +5469,11 @@ msgstr ""
"Будет ли при создании таблицы, в журнал первой строкой добавлено выражение "
"DROP TABLE IF EXISTS."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Добавить DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5476,21 +5481,21 @@ msgstr ""
"Будет ли при создании представления, в журнал первой строкой добавлено "
"выражение DROP VIEW IF EXISTS."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Добавить DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Определить список выражений используемых для автоматического создания новых "
"версий."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Слежение за выражениями"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5498,11 +5503,11 @@ msgstr ""
"Для отключения поддержки слежения за SQL запросами оставьте поле пустым. "
"Рекомендуется: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Таблица слежения за SQL запросами"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5510,11 +5515,11 @@ msgstr ""
"Должен ли механизм слежения создавать версии таблиц и представлений "
"автоматически."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Автоматическое создание версий"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5522,15 +5527,15 @@ msgstr ""
"Для отключения возможности хранения пользовательских настроек в базе данных "
"оставьте поле пустым. Рекомендуется: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Таблица хранения настроек пользователя"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Прописанный пользователь"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5538,20 +5543,20 @@ msgstr ""
"Пользовательское описание сервера. Оставьте пустым, чтобы вывести название "
"хоста."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Пользовательское имя сервера"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Позволяет вывести пользователю кнопку "показать все (записи)""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Разрешать вывод всех строк"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5562,55 +5567,55 @@ msgstr ""
"прописанного пароля. Смена пароля в конфигурационном файле напрямую никак не "
"ограничена."
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Вывести форму изменения пароля"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Вывести форму создания базы данных"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr "Выводить или прятать столбец отображающий время создания всех таблиц"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Показать время создания"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Выводить или прятать столбец отображающий последнее время обновления для "
"всех таблиц"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Показать последнее время обновления"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Выводить или прятать столбец отображающий последнее время проверки для всех "
"таблиц"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Показать последнее время проверки"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr "Определяет направление отображения при просмотре данных таблицы"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Показать направление отображения"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5618,27 +5623,27 @@ msgstr ""
"Определяет изначальное отображение типа полей в режиме редакции или вставки "
"данных"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Отображение типа полей"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Выводить поля функций в режиме редактирования или вставки"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Выводить поля функций"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Показать или скрыть подсказки"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Показать подсказку"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5646,43 +5651,43 @@ msgstr ""
"Вывести ссылку для отображения [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Вывести ссылку на phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Вывести подробную информацию по MySQL серверу"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Определяет вывод SQL запросов генерируемых phpMyAdmin"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Показывать SQL запросы"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
"Определяет будет ли форма запроса оставаться на экране после его отправки"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Оставить поле запроса"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Разрешить вывод статистики по базам данных и таблицам (например, объем "
"занятого пространства)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Показывать статистику"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5690,11 +5695,11 @@ msgstr ""
"Если включен вывод всплывающих подсказок и установлен вывод комментария, "
"произойдет взаимная замена комментария и имени базы данных"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Выводить вместо имени базы данных ее комментарий"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5705,30 +5710,30 @@ msgstr ""
"корневого значения, разделенных указанной в директиве $cfg"
"['LeftFrameTableSeparator'] строкой, таблиц"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Комментарий таблицы вместо имени"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Комментарии таблицы во всплывающих подсказках"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Отмечать использованные таблицы и делать возможным отображение баз данных с "
"заблокированными таблицами"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Пропускать заблокированные таблицы"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Требуется подключенный SQL валидатор"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5738,7 +5743,7 @@ msgstr "Требуется подключенный SQL валидатор"
msgid "Password"
msgstr "Пароль"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5746,11 +5751,11 @@ msgstr ""
"[strong]Внимание:[/strong] требуется расширение PHP SOAP, либо установленный "
"PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Включение SQL валидатора"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5758,20 +5763,20 @@ msgstr ""
"При наличии выделенного имени пользователя, пропишите его здесь (изначально "
"используется [kbd]anonymous[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Пользователь"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "При определении Suhosin, на главной странице выводится предупреждение"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Предупреждение о Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5780,11 +5785,11 @@ msgstr ""
"будет приоритетным для текстовых полей SQL запроса (*2) и для окна запроса "
"(*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Столбцов в текстовом поле"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5793,31 +5798,31 @@ msgstr ""
"будет приоритетным для текстовых полей SQL запроса (*2) и для окна запроса "
"(*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Строк в текстовом поле"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Заголовок окна браузера при выборе базы данных"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Заголовок окна браузера по умолчанию"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Заголовок по умолчанию"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Заголовок окна браузера при выборе сервера"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Заголовок окна браузера при выборе таблицы"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5829,29 +5834,29 @@ msgstr ""
"Forwarded-For) заголовку пришедшему с прокси 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Список доверенных прокси для IP allow/deny"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
"Каталог на сервере, в который вы можете загружать файлы для последующего "
"импорта"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Каталог загрузки"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Разрешить поиск по всей базе данных"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Использовать поиск по базе данных"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5859,28 +5864,28 @@ msgstr ""
"При отключении, пользователи не смогут установить никакие из указанных ниже "
"параметров, вне зависимости от галочки справа от них"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Включение вкладки разработчика в настройках"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Проверить обновление"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
"Включает возможность проверки последней версии phpMyAdmin на главной странице"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Проверка версии"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5888,7 +5893,7 @@ msgstr ""
"Включить [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"архивирование для операций импорта и экспорта"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5909,90 +5914,90 @@ msgid "Signon authentication"
msgstr "Авторизация с помощью Signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV, используя LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Быстро"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Обычно"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Параметры экспорта базы данных"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV для MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "OpenDocument текст"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Невозможно инициализировать библиотеку соединения Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Не удалось соединиться с сервером Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Невозможно соединиться с сервером MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"При использовании идентификации по конфигурационному файлу не установлено "
"имя пользователя"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"При использовании единого метода идентификации signon не установлено имя "
"сессии"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"При использовании единого метода идентификации signon не установлен URL"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
"При использовании pmadb не установлен управляющий пользователь phpMyAdmin"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"При использовании pmadb не установлен пароль управляющего пользователя "
"phpMyAdmin"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Некорректно введен IP адрес: %s"
@@ -6012,22 +6017,22 @@ msgstr "Расширение %s не найдено. Пожалуйста, пр
msgid "possible deep recursion attack"
msgstr "возможная атака глубокой рекурсии"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Сервер не отвечает."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Детали..."
@@ -6091,7 +6096,7 @@ msgstr "Создать таблицу"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Имя"
@@ -6251,25 +6256,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Изменение кодировки:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s из %2$s ветки"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "нет ветки"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Git ревизия"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "отправлено %1$s, %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "создано %1$s, %2$s"
@@ -6990,18 +6995,17 @@ msgid "Display MIME types"
msgstr "Отобразить MIME типы"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Время создания"
@@ -7225,15 +7229,7 @@ msgstr "Данные для визуализации GIS не найдены."
msgid "GLOBALS overwrite attempt"
msgstr "попытка перезаписи GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Результат SQL-запроса"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Создан"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вернула пустой результат (т.е. ноль строк)."
@@ -7332,7 +7328,7 @@ msgstr "Несоответствие количества столбцов в CS
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Имя таблицы"
@@ -7689,7 +7685,7 @@ msgstr "Создание PDF-схемы"
msgid "Displaying Column Comments"
msgstr "Отображать комментарии столбцов"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Преобразование"
@@ -7794,10 +7790,10 @@ msgid "Variable"
msgstr "Переменная"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Значение"
@@ -7860,7 +7856,7 @@ msgstr "Создать пароль"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7896,8 +7892,8 @@ msgid "Edit event"
msgstr "Редактировать событие"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Ошибка при обработке запроса"
@@ -7947,7 +7943,7 @@ msgstr "Сохранить при окончании"
msgid "Definer"
msgstr "Определитель"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Определитель должен быть в формате \"username@hostname\""
@@ -8005,7 +8001,7 @@ msgstr ""
"проблем, используйте улучшенное 'mysqli' расширение."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Ошибочный тип процедуры: \"%s\""
@@ -8076,17 +8072,17 @@ msgstr "Тип безопасности"
msgid "SQL data access"
msgstr "Доступ к SQL данным"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Необходимо задать имя процедуры"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "\"%s\" является ошибочным параметром."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8094,19 +8090,19 @@ msgstr ""
"Вы должны задать длину/значения для параметров процедуры имеющих тип ENUM, "
"SET, VARCHAR и VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Вы должны задать имя и тип для каждого параметра процедуры."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Необходимо задать корректный возвращаемый тип для процедуры."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Вы должны задать определение процедуры."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8114,22 +8110,22 @@ msgstr[0] "Последним выражением в процедуре был
msgstr[1] "Последним выражением в процедуре были затронуты %d строки"
msgstr[2] "Последним выражением в процедуре было затронуто %d строк"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Результаты выполнения процедуры %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Выполнить процедуру"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Параметры процедуры"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Функция"
@@ -8304,7 +8300,7 @@ msgstr "Содержание"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Атрибуты"
@@ -8403,12 +8399,12 @@ msgid "Toggle scratchboard"
msgstr "Отображение"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Неизвестный язык: %1$s."
@@ -8454,7 +8450,7 @@ msgstr "Выполнить SQL-запрос(ы) на сервере %s"
msgid "Run SQL query/queries on database %s"
msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Очистить"
@@ -8463,11 +8459,11 @@ msgstr "Очистить"
msgid "Columns"
msgstr "Столбцы"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Создание закладки"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Доступна для всех пользователей"
@@ -8566,12 +8562,12 @@ msgstr ""
"Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли "
"необходимые модули расширений для PHP, описанные в %sдокументации%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Слежение за %s включено."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8583,7 +8579,7 @@ msgstr ""
"одинарной кавычки (\"'\") необходимо экранировать (предварять) символом "
"обратной косой черты, например: '\\\\xyz' или 'a\\'b'."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8591,17 +8587,17 @@ msgstr ""
"Для значений по умолчанию не добавляйте символы экранирования и кавычек, "
"формат значений: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Индекс"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Переместить поле"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8610,11 +8606,11 @@ msgstr ""
"Для просмотра доступных MIME-типов и параметров преобразований "
"воспользуйтесь данной ссылкой - %sописание преобразований%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Параметры преобразований"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8626,71 +8622,71 @@ msgstr ""
"необходимо экранировать (предварять) символом обратной косой черты, "
"например: '\\\\xyz' или 'a\\'b'."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Много данных ENUM или SET?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Открыть расширенный редактор"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Нет"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Как определено:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Первичный"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Полнотекстовый"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "первый"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "после %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Добавить %s поле(я)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Необходимо добавить хотя бы одно поле."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Тип таблиц"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Определение разделов (PARTITION)"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Оператор"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Поиск в таблице"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Редактировать/Вставить"
@@ -8860,11 +8856,11 @@ msgstr ""
"Ваши настройки будут сохранены только для текущей сессии. Для постоянного "
"хранения требуется подключение модуля %sхранения настроек phpMyAdmin%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Не получилось сохранить настройки"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8876,8 +8872,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Файлов внутри ZIP-архива не найдено!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Ошибка в ZIP-архиве:"
@@ -9056,16 +9052,22 @@ msgstr ""
msgid "No databases"
msgstr "Базы данных отсутствуют"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Фильтровать таблицы по имени"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Фильтровать таблицы по имени"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Создать таблицу"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Выберите базу данных"
@@ -10229,7 +10231,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Вопросов начиная с запуска: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Характеристика"
@@ -11506,13 +11508,13 @@ msgstr "Игнорировать ошибки"
msgid "Show form"
msgstr "Показать форму"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Недоступны обработчик URL протокола или CURL. Проверка версии невозможна."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11520,15 +11522,15 @@ msgstr ""
"Не удалось получить текущую версию. Возможно вы не соединены с сетью, или "
"сервер обновления не отвечает."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "От сервера получена некорректная строка версии"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Строка версии не поддаётся разбору"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11537,11 +11539,11 @@ msgstr ""
"Вы используете Git версию, запустите [kbd]git pull[/kbd] :-)[br]Последняя "
"стабильная версия %s, выпущена %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Обновление стабильной версии недоступно"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11556,7 +11558,7 @@ msgstr ""
"выделенным и кроме вас принадлежит тысячам пользователей того же Интернет "
"Провайдера."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11566,7 +11568,7 @@ msgstr ""
"причине он был автоматически создан за вас. Данный ключ используется для "
"кодировки cookies; вам не надо его запоминать."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11575,7 +11577,7 @@ msgstr ""
"%sСоздание и распаковка Bzip2 архивов%s требует наличия функций (%s), "
"которые недоступны на данной системе."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11584,14 +11586,14 @@ msgstr ""
"директория не доступна извне, не открыта для чтения или записи для любого "
"другого пользователя сервера."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
"Вы должны использовать %sSSL соединение%s, если ваш веб-сервер его "
"поддерживает."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11600,7 +11602,7 @@ msgstr ""
"%sСоздание и распаковка GZip архивов%s требует наличия функций (%s), которые "
"недоступны на данной системе."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11611,7 +11613,7 @@ msgstr ""
"случайные сбросы сессии, если %ssession.gc_maxlifetime%s менее данного "
"значения (текущее значение %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11621,7 +11623,7 @@ msgstr ""
"минут). Установка значения более 1800 может оказаться небезопасным в связи с "
"возможным использованием сессии другим лицом."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11631,7 +11633,7 @@ msgstr ""
"cookie%s не в 0, %sДлительность cookie авторизации%s должна быть установлена "
"в меньшее или равное значение."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11644,7 +11646,7 @@ msgstr ""
"защита по IP может быть ненадежной, если ваш IP не является выделенным и "
"кроме вас принадлежит тысячам пользователей того же Интернет Провайдера."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11659,7 +11661,7 @@ msgstr ""
"в панель управления. Установите %sтип идентификации%s в [kbd]cookie[/kbd] "
"или [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11668,7 +11670,7 @@ msgstr ""
"%sСоздание Zip архивов%s требует наличия функций (%s), которые недоступны на "
"данной системе."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11677,28 +11679,28 @@ msgstr ""
"%sРаспаковка Zip архивов%s требует наличия функций (%s), которые недоступны "
"на данной системе."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"Вы должны использовать SSL соединение, если ваш сервер баз данных его "
"поддерживает."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
"По причине улучшения производительности, рекомендуется использовать "
"расширение mysqli."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Вы разрешаете соединение с сервером без пароля."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
"Ключ кодирования слишком короткий, он должен содержать не менее 8 символов."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Ключ должен содержать символы алфавита, цифры [em]и[/em] знаки."
@@ -11706,8 +11708,8 @@ msgstr "Ключ должен содержать символы алфавита
msgid "Wrong data"
msgstr "Ошибочные данные"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Обзор внешних значений"
@@ -11737,21 +11739,29 @@ msgstr "Отображает SQL-запрос"
msgid "Validated SQL"
msgstr "SQL синтаксис проверен"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Результат SQL-запроса"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Создан"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблемы с индексами таблицы `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Метка"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Таблица %1$s была успешно изменена"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Поля были успешно перемещены."
@@ -11869,7 +11879,7 @@ msgstr "Значения Y"
msgid "Table %s already exists!"
msgstr "Таблица %s уже существует!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Таблица %1$s была создана."
@@ -12068,43 +12078,43 @@ msgstr "Удалить разделение"
msgid "Check referential integrity:"
msgstr "Проверить целостность данных:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Отображение таблиц"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Используемое пространство"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Использование"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Эффективность"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Статистика строк"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "статический"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "динамический"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Длина строки"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Размер строки"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Следующий автоматический индекс"
@@ -12392,29 +12402,29 @@ msgstr "Отслеживать выражения изменяющие данн
msgid "Create version"
msgstr "Создать версию"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Выполнить \"запрос по образцу\" (символ шаблона: \"%\") для двух различных "
"столбцов"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Добавочный критерий поиска"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Использовать данное поле для обозначения каждой точки"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Максимальное количество строк для построения"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Обзор/Редакция точек"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Как использовать"
diff --git a/po/si.po b/po/si.po
index 0ed30b4e7b..cc78edf03c 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-11 19:33+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "සියල්ල පෙන්වන්න"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "පිටු අංකය:"
@@ -38,30 +38,30 @@ msgstr ""
"ආරක්ෂක සැකසුම් අන්තර් කවුළු යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "සෙවීම"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "සෙවීම"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "යන්න"
@@ -109,8 +109,8 @@ msgid "Database comment: "
msgstr "දත්තගබඩා විස්තර: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "වගු විස්තර"
@@ -121,14 +121,14 @@ msgstr "වගු විස්තර"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "තීර"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -136,12 +136,12 @@ msgstr "තීර"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "වර්ගය"
@@ -153,9 +153,9 @@ msgstr "වර්ගය"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -165,7 +165,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "පෙරනිමි"
@@ -174,18 +174,18 @@ msgstr "පෙරනිමි"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "සම්බන්ද වන්නේ"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "විස්තරය"
@@ -196,11 +196,11 @@ msgstr "විස්තරය"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,12 +218,12 @@ msgstr "නැත"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -233,8 +233,8 @@ msgstr "ඔව්"
msgid "View dump (schema) of database"
msgstr "දත්තගබඩාවේ නික්ෂේපනය (ක්රමානුරූපය) දර්ශනය කරන්න"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත."
@@ -319,8 +319,8 @@ msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙ
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -340,8 +340,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "ක්රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -351,45 +351,44 @@ msgstr "ක්රමානුරූපය සංස්කරණය හෝ අ
msgid "Table"
msgstr "වගුව"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "පේළි"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "ප්රමාණය"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "භාවිතා වෙමින් පවතී"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "සෑදීම"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "අවසන් යාවත්කාලීන කිරීම"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "අවසන් පරීක්ෂාව"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -478,13 +477,13 @@ msgstr "වගු භාවිතා කරන්න"
msgid "SQL query on database %s :"
msgstr "%s දත්තගබඩාව මත SQL විමසුම:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "විමසුම ඉදිරිපත් කරන්න"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "පිවිසුම වලක්වා ඇත"
@@ -518,8 +517,8 @@ msgstr[0] "%2$s වගුව තුල ගැලපීම් %1$s කි"
msgstr[1] "%2$s වගුව තුල ගැලපීම් %1$s කි"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "පිරික්සන්න"
@@ -595,11 +594,11 @@ msgstr "%s දසුන හලන ලදි"
msgid "Table %s has been dropped"
msgstr "%s වගුව හලන ලදි"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "අවධානය සක්රීයයි."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "අවධානය අක්රීයයි."
@@ -612,7 +611,7 @@ msgstr ""
"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය කරන්න."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "දසුන"
@@ -657,7 +656,7 @@ msgstr "පිරිවැයක් සහිත වගු පරීක්ෂා
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -666,17 +665,18 @@ msgid "Export"
msgstr "අපනයනය"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "මුද්රණ දර්ශනය"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "හිස් කරන්න"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -719,15 +719,14 @@ msgid "Tracked tables"
msgstr "අවධානය සක්රීය වගු"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "දත්තගබඩාව"
@@ -745,7 +744,7 @@ msgstr "යාවත්කාලීන කරන ලදි"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "තත්වය"
@@ -937,13 +936,13 @@ msgstr "පොත් සලකුණ පෙන්වන්න"
msgid "The bookmark has been deleted."
msgstr "පොත් සලකුණ ඉවත් කරන ලදි."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "ගොනුව කියවිය නොහැක"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -969,7 +968,7 @@ msgstr "අක්ෂර කට්ටල හැරවීම් පුස්තක
msgid "Could not load import plugins, please check your installation!"
msgstr "ආනයනය පේනු පූරණය අසමත් විය. ඔබගේ ස්ථාපිතය පරීක්ෂා කරන්න!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "%s පොත් සලකුණ සාදන ලදි"
@@ -995,8 +994,8 @@ msgstr ""
"කෙසේ නමුදු අවසන් වාරයේදී කිසිදු දත්තයක් ලබා ගත නොහැකි විය. මෙයින් අදහස් වන්නේ ඔබගේ php කාල "
"සීමාව වැඩි කිරීමකින් තොරව phpMyAdmin හට මෙම ආනයනය සම්පූර්ණ කිරීමට හැකි නොවන බවය."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1105,9 +1104,9 @@ msgid "Close"
msgstr "වසන්න"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "සංස්කරණය කරන්න"
@@ -1131,7 +1130,7 @@ msgstr "ස්ථිතික දත්ත"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "මුළු එකතුව"
@@ -1142,12 +1141,12 @@ msgid "Other"
msgstr "අනෙකුත්"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1226,13 +1225,13 @@ msgid "System swap"
msgstr "පද්ධතියේ swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1290,27 +1289,27 @@ msgid "Connections"
msgstr "සම්බන්ධතා"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1350,9 +1349,9 @@ msgstr "කරුණාකර ශ්රේණියට අවම වශයෙ
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "කිසිවක් නැත"
@@ -1530,7 +1529,7 @@ msgstr "ප්රතිදානය පහදන්න"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "කාලය"
@@ -1840,7 +1839,7 @@ msgstr "%d වලංගු පේළි අංකයක් නොවේ."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1854,7 +1853,7 @@ msgstr "සෙවුම් නිර්ණායක සඟවන්න"
msgid "Show search criteria"
msgstr "සෙවුම් නිර්ණායක පෙන්වන්න"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Zoom සෙවීම"
@@ -2025,7 +2024,7 @@ msgstr "මුරපදය වෙනස් කරන්න"
msgid "More"
msgstr "තවත්"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2112,63 +2111,63 @@ msgid "December"
msgstr "දෙසැම්බර්"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "ජනවාරි"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "පෙබරවාරි"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "මාර්තු"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "අප්රේල්"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "මැයි"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "ජුනි"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "ජූලි"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "අගෝස්තු"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "සැප්තැම්බර්"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "ඔක්තෝම්බර්"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "නොවැම්බර්"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "දෙසැම්බර්"
@@ -2206,32 +2205,32 @@ msgid "Sun"
msgstr "ඉරිදා"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "සඳුදා"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "අඟහ"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "බදාදා"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "බ්රහස්"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "සිකුරා"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "සෙනසු"
@@ -2371,11 +2370,11 @@ msgstr "වත්මන් වින්යාස ගොනුව (%s) කි
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "වින්යාස ගොනුව සඳහා වැරදි අවසර සිටුවා ඇත. සැමටම ඊට ලිවිය හැකි නොවිය යුතුය!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "ෆොන්ටයෙහි ප්රමාණය"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "දෝෂ පණිවුඩ ප්රමාණය ඉක්මවා ගොස් ඇත, ඇතැමෙක් ප්රදර්ශනය නොකෙරේ."
@@ -2383,37 +2382,37 @@ msgstr "දෝෂ පණිවුඩ ප්රමාණය ඉක්මවා
msgid "File was not an uploaded file."
msgstr "ගොනුව උඩුගත කරන ලද්දක් නොවේ."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "උඩුගත කෙරුනු ගොනුව HTML පෝරමයෙහි සඳහන් MAX_FILE_SIZE අගය ඉක්මවයි."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2421,11 +2420,11 @@ msgstr ""
"උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "උඩුගත කරන ලද ගොනුව චලනයේදී දෝෂයක් මතු විය."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "උඩුගත කරන ලද ගොනුව කියවීමට නොහැක."
@@ -2439,7 +2438,7 @@ msgstr "සුචියක් අර්ථදක්වා නැත!"
msgid "Indexes"
msgstr "සූචියන්"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2475,46 +2474,46 @@ msgid ""
"removed."
msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "දත්තගබඩා"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "සේවාදායකය"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "සැකිල්ල"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "ඇතුල් කරන්න"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "මෙහෙයුම්"
@@ -2593,27 +2592,27 @@ msgstr "පේණු"
msgid "Engines"
msgstr "යන්ත්රයන්"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "දෝෂය"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "පේළියකට බලපෑවේය."
msgstr[1] "පේළි %1$dකට බලපෑවේය."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "පේළි %1$d ක් ඉවත් කෙරුනි."
msgstr[1] "පේළි %1$d ක් ඉවත් කෙරුනි."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2656,43 +2655,43 @@ msgstr "මෙම MySQL සේවාදායකයේ %s අක්රීය
msgid "This MySQL server does not support the %s storage engine."
msgstr "මෙම MySQL සේවාදායකයේ %s ගබඩා යන්ත්රය භාවිත කල නොහැක."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "වගු තත්වය සඳහා නොහඳුනන අගයක්: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "`%s` මූලාශ්ර දත්තගබඩාව හමු නොවිණි!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "`%s` ඉලක්කගත දත්තගබඩාව හමු නොවිණි!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "වලංගු නොවන දත්තගබඩාව"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "වලංගු නොවන වගු නම"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "%1$s වගුව %2$s ලෙසට නම වෙනස් කරන ලදි."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2701,7 +2700,7 @@ msgstr ""
"අතුරුමුහුණත සඳහා තේරීම් අඩංගු ගොනුව පවිත්ර කිරීම අසමත් විය ($cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s බලන්න)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2711,16 +2710,16 @@ msgstr ""
"අතුරුමුහුණත් විචල්යය \"%s\" සුරැකිය නොහැක. මෙම පිටුව ප්රතිපූර්ණයෙන් පසු සිදුකල වෙනස්කම් අහිමි වනු "
"ඇත. අදාල වගුවේ සැකිල්ල වෙනස් වී ඇත්දැයි පරීක්ෂාකර බලන්න."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "පූර්වදර්ශනයක් නොමැත."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "ලබාගන්න"
@@ -2779,7 +2778,7 @@ msgstr ""
"අෂ්ට බයිට නිඛිලයකි, සලකුණ සහිත පරාසය -9,223,372,036,854,775,808 සිට "
"9,223,372,036,854,775,807, සලකුණ රහිත පරාසය 0 සිට 18,446,744,073,709,551,615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2833,12 +2832,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE සඳහා අන්වර්ථ නාමයකි"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "දිනයකි, සහයැති පරාසය %1$s සිට %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "දිනය සහ වේලාවේ සංයුක්තයකි, සහයැති පරාසය %1$s සිට %2$s"
@@ -2851,7 +2850,7 @@ msgstr ""
"කාල මුද්රාවකි, පරාසය 1970-01-01 00:00:01 UTC සිට 2038-01-09 03:14:07 UTC, "
"කාලරම්භයේ (1970-01-01 00:00:00 UTC) සිට ගත වූ තත්පර ගණන ලෙස ගබඩා කර ඇත"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "වේලාවකි, පරාසය %1$s සිට %2$s"
@@ -2872,7 +2871,7 @@ msgstr ""
"ස්ථිර-දිගැති පෙළකි (0-255, පෙරනිමි 1), සෑම විටම නියමිත දිග ලැබෙන තුරු දකුණු පසින් හිස් අවකාශ එක් "
"කෙරේ"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2887,7 +2886,7 @@ msgstr ""
"සලකුණු 255 (2^8 - 1) ක උපරිම දිගක් සහිත පෙළ තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග සඳහන් "
"කෙරෙන එක් බයිටයක් සමඟ ගබඩා කෙරේ"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3000,60 +2999,60 @@ msgstr "බහු අස්ර එකතුවකි"
msgid "A collection of geometry objects of any type"
msgstr "ඕනෑම වර්ගයක ජ්යාමිතීන් එකතුවකි"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "නව සූචියක් සාදන්න"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "රේඛාව"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "ජ්යාමිතික"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "සිවු බයිට නිඛිලයකි, පරාසය -2,147,483,648 සිට 2,147,483,647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
"අෂ්ට බයිට නිඛිලයකි, පරාසය -9,223,372,036,854,775,808 සිට 9,223,372,036,854,775,807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr "පද්ධතියේ පෙරනිමි ද්වී-නියත දශම සංඛ්යාවකි"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "සත්ය හෝ අසත්ය"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "BIGINT NOT NULL AUTO_INCREMENT UNIQUE සඳහා අන්වර්ථ නාමයකි"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "විශ්වීය අනන්ය හැඳුනුමක් (UUID) ගබඩා කරයි"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
@@ -3061,13 +3060,13 @@ msgstr ""
"කාල මුද්රාවකි, පරාසය '0001-01-01 00:00:00' UTC සිට '9999-12-31 23:59:59' UTC; "
"TIMESTAMP(6) හට මයික්රෝ තත්පර ගබඩා කල හැක"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
@@ -3075,7 +3074,7 @@ msgstr ""
"බයිට 65,535 (2^16 - 1) ක උපරිම දිගක් සහිත බ්ලොබ් තීරුවකි, ඉදිරියෙන් යෙදු, අන්තර්ගතයේ දිග සඳහන් "
"කෙරෙන බයිට හතරක් සමඟ ගබඩා කෙරේ"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "අර්ථදක්වන ලද අගයන් අඩංගු ලැයිස්තුවකින් තෝරාගන්නා අගයකි"
@@ -3146,20 +3145,20 @@ msgstr "සේවාදායකයේ තේරීම"
msgid "Cookies must be enabled past this point."
msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්රිය කල යුතුයි."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "මුර පදයක් නොමැතිව ඇතුල් වීම ඔබගේ සිටුවම් මගින් වලකා ඇත. (AllowNoPassword බලන්න)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "පසුගිය තත්පර %s තුල අක්රීයයි; නැවත ඇතුළු වන්න"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL සේවාදායකයට ලොග් විය නොහැක"
@@ -3203,18 +3202,18 @@ msgstr "වගු"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "දත්ත"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "පිරිවැය"
@@ -3319,8 +3318,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL විමසුම"
@@ -3330,144 +3329,144 @@ msgstr "SQL විමසුම"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL පවසන ලදි: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "SQL වලංගු කරණයට සම්බන්ද වීම අසමත් විය!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL ය පහදන්න"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL ය පහදා දීමෙන් ඉවත් වන්න"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP කේත නොමැතිව"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP කේත සාදන්න"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "අලුත් කරන්න"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL සත්යාපනයෙන් ඉවත් වන්න"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL සත්යාපනය"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "මෙම විමසුමේ පේළිගත සංස්කරණය"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "පේළිගත"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "ඉරිදා"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y දින %I:%M %p ට"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "නොමැති පරාමිතිය:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "ඇරඹුම"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "පෙර"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "මීලඟ"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "අවසන"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" දත්තගබඩාව වෙත යන්න."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝෂයක් ඇත, %s බලන්න"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "මාරු කිරීමට ක්ලික් කරන්න"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "පරිගණකය තුළ පිරික්සන්න:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "ක්රියාත්මක කරන්න"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "මුද්රණය කරන්න"
@@ -3551,68 +3550,68 @@ msgstr "ඉහත ද්විත්වයම"
msgid "neither of the above"
msgstr "ඉහත එක් වර්ගයක්වත් නොව"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "ධන සංඛ්යාවක් නොවේ"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "ඍණ නොවන සංඛ්යාවක් නොවේ"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "වලංගු පොර්ට් අංකයක් නොවේ"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "වැරදි අගයකි"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "අගය %s ට සමාන හෝ අඩු විය යුතුය"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "%s සඳහා දත්ත නොමැත"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "නොතිබෙන"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" සඳහා %s දිගුව අවශ්යය"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "ආනයන අකර්මන්යයි, (%s) ක්රියාවලිය නොමැත"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "අපනයන අකර්මන්යයි, (%s) ක්රියාවලිය නොමැත"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL වලංගු කරණය අක්රීය කර ඇත"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP දිගුව හමු නොවිණි"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "උපරිම %s"
@@ -3631,7 +3630,7 @@ msgid "Set value: %s"
msgstr "%s අගය පිහිටුවන්න"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "පෙරනිමි අගය ප්රතිස්ථාපනය කරන්න"
@@ -3926,7 +3925,7 @@ msgid "Character set of the file"
msgstr "ගොනුවේ අක්ෂර කට්ටලය"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "ආකෘතිය"
@@ -4025,7 +4024,7 @@ msgstr "ලේබල යතුර"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME වර්ගය"
@@ -4149,8 +4148,8 @@ msgstr "පෙරනිමි විකල්ප රිසි සේ සකස
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4572,14 +4571,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "වගු පෙරහන් කවුළුව පෙන්වීමට අවම වශයෙන් තිබිය යුතු වගු ගණන"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "වගු පෙරහන් කවුළුව පෙන්වීමට අවම වශයෙන් තිබිය යුතු වගු ගණන"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "දත්තගබඩා ලැයිස්තුව ගසක ආකාරයෙන් පෙන්වීමේදී එක් එක් මට්ටම් වෙන කරන සලකුණ"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "දත්තගබඩා ගසෙහි වෙන්කරණය"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4587,39 +4592,39 @@ msgstr ""
"සැහැල්ලු ප්රකාරය පමණි; දත්තගබඩා ලැයිස්තුව ගසක ආකාරයෙන් පෙන්වන්න (පහත සඳහන් වෙන්කරණය මත "
"තීරණය වේ)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "දත්තගබඩා ලැයිස්තුව ගසක ආකාරයෙන් පෙන්වන්න"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "සියලු දත්ත ගබඩා එකවර පෙන්වීමට මෙය අක්රීය කරන්න"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "සැහැල්ලු අනුවාදය භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "වගු ගසෙහි උපරිම මට්ටම් ගණන"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "වගු ලැයිස්තුව ගසක ආකාරයෙන් පෙන්වීමේදී එක් එක් මට්ටම් වෙන කරන සලකුණ"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "වගු ගසෙහි වෙන්කරණය"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "යාත්රණ රාමුවේ දැක්වෙන ලාංඡනය සබැඳිය යුතු URL"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "ලාංඡනය හා සබැඳි URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4627,57 +4632,57 @@ msgstr ""
"සබැඳි පිටුව ප්රධාන කවුළුව ([kbd]main[/kbd]) තුල හෝ නව කවුළුවක් ([kbd]new[/kbd]) තුල "
"විවෘත කරන්න"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "ලාංඡනයේ සබැඳුම"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "කර්සරයෙන් දැක්වෙන සේවාදායකය ඉස්මතු කරන්න"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "ඉස්මතු කිරීම සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "මෑතදී භාවිතා කල වගු ලයිස්තුවේ පෙන්විය යුතු වගු ගණන; අක්රීය කිරීමට 0 යොදන්න"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "මෑතදී භාවිතා කල වගු"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "වගු පිරික්සීමේදී සංඛ්යාමය නොවන තීරුවක පෙන්විය යුතු උපරිම අනුලකුණු ගණන"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "තීරුවක අනුලකුණු සීමා කරන්න"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "පිටවීමේදී කුකී සියල්ල ඉවත් කරන්න"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr "කුකී සත්යාපන ප්රකාරයේදී අවසන් ඇතුළු වීමම භාවිතා කල යුතුදැයි සඳහන් කරයි"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "භාවිත නාමය සිහියට නගන්න"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4688,48 +4693,48 @@ msgstr ""
"වන 0 න් අදහස් වනුයේ එය වත්මන් සැසිය සඳහ පමණක් තබාගෙන බ්රව්සරය වැසීමෙන් පසු ඉවත් කල යුතුය "
"යන්නය. විශ්වාසදායි නොවන පරිසරයන් සඳහා මෙම පෙරනිමි අගය නිර්දේශිතය."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "ඇතුල් වීමේ කුකිය රඳවාගන්න"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "ලොගින් කුකියේ වලංගු කාලය (තත්පර වලින්) සඳහන් කරන්න"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "ලොගින් කුකියේ වලංගුතාවය"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "LONGTEXT තීර සඳහා දෙගුණයක් විශාල පෙළපෙදෙසක්"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEXT සඳහා විශාල පෙළ පෙදෙසක්"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "SQL විමසුම පෙන්වීමේදී භාවිතා කල යුතු උපරිම අනුලකුණු ගණන"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "දර්ෂිත SQL සඳහා උපරිම දිග"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "භාවිතා කරන්නන්ට වැඩි අගයක් සිටුවිය නොහැක"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "යාත්රණ රාමුවේ හා දත්තගබඩා ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු දත්තගබඩා ගණන"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "උපරිම දත්තගබඩා"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4738,29 +4743,29 @@ msgstr ""
"ප්රථිඵල පිරික්සීමේදී එකවර පෙන්විය යුතු පේළි ගණන. ප්රතිඵලයේ ඊට වඩා පේළි ඇත්නම් "පෙර" "
"සහ "මීළඟ" සබැඳි පෙන්වයි."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "පෙන්විය යුතු උපරිම පේළි ගණන"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "වගු ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු වගු ගණන"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "උපරිම වගු"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr "කුකී සත්යාපනය සඳහා අවශ්ය mcrypt නොමැති අවස්ථාවකදී පෙන්වන අනතුරු ඇඟවීම අක්රීය කරන්න"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt අනතුරු ඇඟවීම"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4768,43 +4773,43 @@ msgstr ""
"විධානවලියකට වෙන් කිරීමට අවසර ඇති බයිට ගණන, උදා. [kbd]32M[/kbd] (අසීමිත බයිට ගණනක් සඳහා "
"[kbd]0[/kbd])"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "මතක සීමාව"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "මේවා සංස්කරණය කරන්න, පිටපත් කරන්න සහ ඉවත් කරන්න යන සබැඳිය"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "වගුවේ පේළි වලට අදාල සබැඳි පෙන්විය යුත්තේ කොහේද යන වග"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "වගු හා දත්තගබඩා වල නම් අනුපිළිවෙලට සැකසීම සඳහා ස්වභාවික අනුපිළිවෙල භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "ස්වභාවික අනුපිළිවල"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "භාවිතා කල යුත්තේ අයිකන පමණක්, පෙළ පමණක්, හෝ මේ දෙකම"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "අයිකන සහිත යාත්රණ පටිය"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "HTTP හුවමාරුවල වේගය වැඩි කිරීම සඳහා GZip ප්රතිදාන ගොඩගැසීම භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip ප්රතිදාන ගොඩගැසීම"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4812,19 +4817,19 @@ msgstr ""
"[kbd]SMART[/kbd] - එනම් TIME, DATE, DATETIME සහ TIMESTAMP තීර සඳහා අවරෝහණ "
"පිළිවෙලත්, අනෙකුත් තීර සඳහා ආරෝහණ පිළිවෙලත්"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "පෙරනිමි අනුපිළිවෙල"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "MySQL දත්තගබඩා වෙත කල්පවතිනා සබඳතා භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "කල්පවතිනා සබඳතා"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4833,153 +4838,153 @@ msgstr ""
"phpMyAdmin වින්යාස ගබඩාවට අවශ්ය එක් වගුවක් හෝ සොයාගත නොහැකි අවස්ථාවකදී දත්තගබඩා සැකිල්ල "
"පිටුවේ පෙන්වන පෙරනිමි අනතුරු ඇඟවීම අක්රීය කරන්න"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin වින්යාස ගබඩාවේ අඩු වගු"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "අයිකන සහිත වගු මෙහෙයුම්"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "BLOB සහ BINARY තීරු සංස්කරණය වලකන්න"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "ද්වීමය තීරු ආරක්ෂා කරන්න"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "ස්ථායී විමසුම් ඉතිහාසය"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "කොපමණ විමසුම් ප්රමාණයක් ඉතිහාසයේ රඳවා ගත යුතුද යන්න"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "විමසුම් ඉතිහාසයේ ප්රමාණය"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "නව විමසුම් කවුළුවක් අරින විට පෙන්වන ටැබය"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "පෙරනිමි විමසුම් කවුළු ටැබය"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "විමසුම් කවුළුවේ උස(පික්සල් වලින්)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "විමසුම් කවුළුවේ උස"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "විමසුම් කවුළුවේ පළල (pixel වලින්)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "විමසුම් කවුළුවේ පළල"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "අක්ෂර කට්ටල පරිවර්තනය සඳහා කුමන ශ්රිතය භාවිතා විය යුතුදැයි තෝරන්න"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "පටිගත කිරීමේ යන්ත්රය"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "වගු පිරික්සීමේදී එක් එක් වගුවේ අනුපිලිවෙල සැකසූ ආකාරය මතක තබා ගැනේ"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "වගුව සැකසූ අනුපිළිවෙල මතක තබාගන්න"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "පේළි x සංඛ්යාවකට වරක් ශීර්ෂ පුනරාවර්තනය කරන්න. අක්රීය කිරීමට [kbd]0[/kbd] යොදන්න"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "ශීර්ෂක පුනරාවර්තනය"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "සංස්කරණය කල කොටු සියල්ල එකවර සුරකින්න"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "සේවාදායකය මත අපනයන සුරැකිය හැකි ඩිරෙක්ටරිය"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "සුරැකුම් ඩිරෙක්ටරිය"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "භාවිතා නොකෙරේ නම් හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "දායකයන් සඳහා අවසර ලබා දීමේ අනුපිළිවෙල"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "පෙරනිමි අගයන් සඳහා හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "දායක සඳහා අවසර දීමේ රීති"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "මුරපදයක් රහිතව ඇතුල් වීමට ඉඩ ලබා දෙන්න"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "root ලෙස ඇතුල් වීමට ඉඩ දෙන්න"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey වින්යාස ගොනුව"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "භාවිතා කල යුතු සත්යාපන ක්රමය"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "සත්යාපන වර්ගය"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -4987,42 +4992,42 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්ය නම් හිස්ව "
"තබන්න. යෝජිත: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "පොත්සලකුණු ගොනුව"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "තීර විස්තර ගොනුව"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "MySQL සේවාදායකය වෙත සම්බන්දතාව හකුළුවන්න"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "සම්බන්ධතාව හකුළුවන්න"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "සේවාදායකයට කෙසේ සම්බන්ද විය යුතුද යන්න, අනියත නම් [kbd]tcp[/kbd] ලෙස යොදන්න"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "සම්බන්ධතා වර්ගය"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "පරිපාලක භාවිතා කරන්නාගේ මුරපදය"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5030,11 +5035,11 @@ msgstr ""
"සීමිත අවසර සහිතව වින්යාස කරන ලද විශේෂ MySQL භාවිතා කරන්නෙක්, වැඩි විස්තර සඳහා [a@http://"
"wiki.phpmyadmin.net/pma/controluser]විකිය[/a] බලන්න"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "පරිපාලක භාවිතා කරන්නා"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5042,56 +5047,56 @@ msgstr ""
"වින්යාස ගබඩාව තබා ගැනීම සඳහා විකල්ප දායකයෙක්; දැනට අර්ථ දක්වා ඇති දායකයා භාවිතා කිරීමට "
"හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "පාලක දායකයා"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "දත්තගබඩා ලැයිස්තුව පෙන්වීමේදී වගු ගණන් කරන්න"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "වගු ගණන් කරන්න"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
"සැලසුම්කරණය විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "සැලසුම්කරණ වගුව"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA භාවිතය අක්රීය කරන්න"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "කුමන PHP දිගුව භාවිතා කල යුතුද යන්න. mysqli සහය ඇත්නම් එය භාවිතා කල යුතුය"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "භාවිතා කල යුතු PHP දිගුව"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Regular expression (PCRE) හා ගැළපෙන දත්තගබඩා සඟවන්න"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "දත්තගබඩා සඟවන්න"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5099,41 +5104,41 @@ msgstr ""
"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_history"
"[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL විමසුම් ඉතිහාස වගුව"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "MySQL සේවාදායකය ක්රියාත්මක දායකයේ දායක නාමය"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "සේවාදායකයේ දායක නාමය"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "පිටවිය යුතු URLය"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "ගබඩා කල යුතු උපරිම වගු අභිරුචි ගණන"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "මුරපදය නොමැතිව සම්බන්ධ වීමට උත්සාහ කරන්න"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "මුරපදය නොමැතිව සම්බන්ධ වන්න"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5142,30 +5147,30 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "සඳහන් දත්තගබඩා පමණක් පෙන්වන්න"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "config සත්යාපනය භාවිතා නොකරයි නම් හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "config සත්යාපනය සඳහා මුරපදය"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF ක්රමනුරූපයේ පිටු පිලිබඳ විස්තර අඩංගු වගුව"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5175,19 +5180,19 @@ msgstr ""
"සඳහා [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] බලන්න. විශේෂාංග අනවශ්ය "
"නම් හිස්ව තබන්න, යෝජිත: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "දත්තගබඩාවේ නම"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "MySQL සේවාදායකය සවන් දෙන පෝර්ටය, පෙරනිමි අගය සඳහා හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "සර්වරයේ පොර්ට්"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5195,11 +5200,11 @@ msgstr ""
"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව "
"තබන්න, යෝජිත: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "මෑතදී භාවිතා වූ වගුව"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5207,19 +5212,19 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන සබැඳි[/a] "
"විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "සබැඳුම් දත්ත ඇතුලත් වගුව"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "දත්තගබඩා ලබාගැනීම සඳහා SQL විධානය"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES විධානය"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5227,42 +5232,42 @@ msgstr ""
"උදාහරණයක් ලෙස [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]සත්යාපන ක්රම[/"
"a] බලන්න"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Signon සැසි නාමය"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Signon URLය"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "MySQL සේවාදායකය සවන් දෙන සොකටය, පෙරනිමි අගය සඳහා හිස්ව තබන්න"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "සර්වරයේ සොකට්"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "MySQL සේවාදායකය වෙත සබඳතාවය සඳහා SSL සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF ක්රමානුරූපය: වගු ඛණ්ඩාංක"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5270,11 +5275,11 @@ msgstr ""
"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න; යෝජිත: [kbd]"
"pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "පෙන්විය යුතු තීර පිළිබඳ දත්ත ඇතුලත් වගුව"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5282,11 +5287,11 @@ msgstr ""
"සැසි අතර \"කල් පවත්නා\" ලෙස වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි තබාගැනීමේ විශේෂාංගය අනවශ්ය නම් "
"හිස්ව තබන්න, යෝජිත: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "UI අභිරුචි පිළිබඳ දත්ත ඇතුලත් වගුව"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5294,62 +5299,62 @@ msgstr ""
"දත්තගබඩාවක් සෑදීමේදී ලොගයේ පළමු පේළිය ලෙස DROP DATABASE IF EXISTS ප්රකාශයක් එක් "
"කරන්නේද යන වග."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE එක් කරන්න"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
"වගුවක් සෑදීමේදී ලොගයේ පළමු පේළිය ලෙස DROP TABLE IF EXISTS ප්රකාශයක් එක් කරන්නේද යන වග."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "DROP TABLE එක් කරන්න"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
"දසුනක් සෑදීමේදී ලොගයේ පළමු පේළිය ලෙස DROP VIEW IF EXISTS ප්රකාශයක් එක් කරන්නේද යන වග."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "DROP VIEW එක් කරන්න"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "නව අනුවාදයක් සඳහා ස්වයංක්රීය-සැදුම විසින් භාවිතා කලයුතු ප්රකාශන ලැයිස්තුව සඳහන් කරයි."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "අවධානය සක්රීය කල යුතු ප්රකාශ"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL විමසුම් අවධානයට අදාළ වගුව"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "අවධාන ක්රියාවලිය විසින් වගු සහ දසුන් සඳහා ස්වයන්ක්රීයව අනුවාද සාදන්නේ ද යන වග."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "ස්වයංක්රියව අනුවාද සාදන්න"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5357,111 +5362,111 @@ msgstr ""
"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න; යෝජිත: "
"[kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "භාවිතා කරන්නාගේ අභිරුචි වගුව"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "config සත්යාපනය සඳහා භාවිතා කරන්නා"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "සේවාදායකය සඳහා පරිශ්රීලක මිත්ර විස්තරයක්. එය වෙනුවට දායක නාමය පෙන්වීමට හිස්ව තබන්න."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""සියලුම පේළි පෙන්වන්න" සබැඳිය භාවිතා කරන්නාට පෙන්වන්නේද යන වග"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "සියලුම පේළි දර්ශනය කිරීමට ඉඩ ලබාදෙයි"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "මුරපදය වෙනස් කිරීමේ පෝරමය පෙන්වන්න"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "දත්තගබඩාවක් සෑදීමේ පෝරමය පෙන්වන්න"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr "සියලුම වගු සඳහා වගුව සෑදූ වේලාව දැක්වෙන තීරුව පෙන්වන්න හෝ සඟවන්න"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "සෑදූ වේලාව පෙන්වන්න"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr "සියලුම වගු සඳහා අවසන් වරට වගුව යාවත්කාලීන කල වේලාව දැක්වෙන තීරුව පෙන්වන්න හෝ සඟවන්න"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "අවසන් වරට යාවත්කාලීන කල වේලාව පෙන්වන්න"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr "සියලුම වගු සඳහා අවසන් වරට වගුව පරීක්ෂා කල වේලාව දැක්වෙන තීරුව පෙන්වන්න හෝ සඟවන්න"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "අවසන් වරට පරීක්ෂා කල වේලාව පෙන්වන්න"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr "වගුවක් පිරික්සීමේදී දර්ශන දිශාව තෝරාගැනීමට ඉඩ ලබා දෙන්නේද යන්න සඳහන් කරයි"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "දර්ශන දිශාව තෝරාගැනීම පෙන්වන්න"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
"සංස්කරණ/ඇතුළුකිරීම් ප්රකාරයේදී තීර වර්ගය දක්වන ක්ෂේත්රය ආරම්භයේදී පෙන්විය යුතුද නැතිද යන වග"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "ක්ෂේත්රයේ වර්ගය පෙන්වන්න"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "සංස්කරණ/ඇතුළුකිරීම් ප්රකාරයේදී ශ්රිතය ක්ෂේත්රයන් පෙන්වයි"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "ශ්රිතය තීරුව පෙන්වන්න"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "ඉඟිය පෙන්විය යුතුද නැත්ද යන වග"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "ඉඟිය පෙන්වන්න"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5469,41 +5474,41 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] ප්රතිදානය වෙත "
"සබැඳුම පෙන්වන්න"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "phpinfo() සබැඳුම පෙන්වන්න"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "MySQL සේවාදායකය පිලිබඳ විස්තරාත්මක තොරතුරු පෙන්වන්න"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "phpMyAdmin විසින් සාදන ලද විමසුම් පෙන්විය යුතුදැයි සඳහන් කරයි"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "SQL විමසුම් පෙන්වන්න"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "විමසුම ක්රියාත්මක කිරීමෙන් පසුව විමසුම් කවුළුව තිරය මත රඳවා ගත යුතුදැයි සඳහන් කරයි"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "විමසුම් කවුළුව රඳවාගන්න"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"දත්තගබඩා හා වගු වලට අදාල සංඛ්යාලේඛන (උදා. භාවිතා වන ඉඩ ප්රමාණය) පෙන්වීමට ඉඩ සලසයි"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "සංඛ්ය ලේඛන පෙන්වන්න"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5511,11 +5516,11 @@ msgstr ""
"මෙවලම් ඉඟිය සක්රීය කර සහ දත්තගබඩා විස්තරය සිටුවා ඇත්නම්, මෙය දත්තගබඩා විස්තරය සහ නම "
"හුවමාරුකර පෙන්වයි"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "දත්තගබඩාවේ නම වෙනුවට එහි විස්තරය පෙන්වන්න"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5526,28 +5531,28 @@ msgstr ""
"['LeftFrameTableSeparator'] අගය අනුව වගු වෙන්කිරීමට/කාණ්ඩගත කිරීමට පමණි. එම නිසා කාණ්ඩය "
"පමණක් අන්වර්ථ නාමයෙන් හැඳින්වෙන අතර, වගු නාමයන් නොවෙනස්ව පවතී"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "වගුවේ නම වෙනුවට විස්තරය පෙන්වන්න"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "මෙවලම් ඉඟිය ලෙස වගු විස්තරය පෙන්වන්න"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr "භාවිතා කරන ලද වගු සලකුණු කර අගුලු ළෑ වගු සහිත දත්තගබඩා පෙන්වීමට ඉඩ සලසන්න"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "අගුලු ළෑ දත්තගබඩා මඟහරින්න"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "SQL වලංගු කරණය සක්රීය කිරීම අවශ්ය වේ"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5557,17 +5562,17 @@ msgstr "SQL වලංගු කරණය සක්රීය කිරීම
msgid "Password"
msgstr "මුරපදය"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr "[strong]අවවාදයයි:[/strong] PHP SOAP ස්ථාපනය කර තිබීම හෝ PHP SOAP දිගුව අවශ්යයි"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "SQL සත්යාපකය සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5575,20 +5580,20 @@ msgstr ""
"ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන [kbd]"
"anonymous[/kbd] භාවිතා කෙරේ)"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "භාවිත නාමය"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Suhosin ඇති බව හඳුනාගතහොත් ප්රධාන පිටුවේ අනතුරු ඇඟවීමක් පෙන්වයි"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin අනතුරු ඇඟවීම"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5596,11 +5601,11 @@ msgstr ""
"සංස්කරණ ප්රකාරයේදී පෙළ පෙදෙසේ පළල (තීරු ගණනින්). මෙම අගය වැඩි කිරීමෙන් SQL විමසුම් පෙළ "
"පෙදෙසේද (*2) විමසුම් කවුළුවේද (*1.25) පළල ලබා ගැනේ"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "පෙළ පෙදෙසේ පළල"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5608,31 +5613,31 @@ msgstr ""
"සංස්කරණ ප්රකාරයේදී පෙළ පෙදෙසේ උස (පේලි ගණනින්). මෙම අගය වැඩි කිරීමෙන් SQL විමසුම් පෙළ "
"පෙදෙසේද (*2) විමසුම් කවුළුවේද (*1.25) උස ලබා ගැනේ"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "පෙළ පෙදෙසේ උස"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "දත්තගබඩාවක් තෝරා ඇති විට බ්රව්සර කවුළුවේ මාතෘකාව"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "කිසිවක් තෝරා නැති විට බ්රව්සර කවුළුවේ මාතෘකාව"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "පෙරනිමි නාමය"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "සේවාදායකයක් තෝරා ඇති විට බ්රව්සර කවුළුවේ මාතෘකාව"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "වගුවක් තෝරා ඇති විට බ්රව්සර කවුළුවේ මාතෘකාව"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5640,53 +5645,53 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "ආනයනය සඳහා ගොනු උඩුගත කල හැකි සේවාදායකයේ ඩිරෙක්ටරිය"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "උඩුගත කිරීමේ ඩිරෙක්ටරිය"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "සම්පූර්ණ දත්තගබඩාව තුලම සෙවීම සඳහා ඉඩ ලබා දෙන්න"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "දත්තගබඩා සෙවීම භාවිතා කරන්න"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "සිටුවම් හි ක්රමලේඛනය කරන්නන් සදහා වූ ටැබය සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "නවතම අනුවාදය සඳහා පරීක්ෂා කරන්න"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "phpMyAdmin ප්රධාන පිටුවේ නවතම අනුවාදය සඳහා පරීක්ෂාව සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "අනුවාද පරීක්ෂාව"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5694,7 +5699,7 @@ msgstr ""
"ආනයන අපනයන මෙහෙයුම් සඳහා [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP"
"[/a] හැකිළීම යොදාගැනීම සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5715,82 +5720,82 @@ msgid "Signon authentication"
msgstr "Signon සත්යාපනය"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA භාවිතයෙන් CSV"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document පැතුරුම්පත"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "කඩිනම්"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "අභිමත"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "දත්තගබඩා අපනයන විකල්ප"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS එක්සෙල් සඳහා CSV"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "මයික්රොසොෆ්ට් වර්ඩ් 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document පෙළ"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Drizzle සබඳතා පුස්තකාලය ඇරඹිය නොහැකි විය"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Drizzle සේවාදායකය වෙත සම්බන්ධ විය නොහැකි විය"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "MySQL සේවාදායකය වෙත සම්බන්ධ විය නොහැකි විය"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "config සත්යාපන ක්රමය භාවිතා කිරීමේදී හිස් භාවිත නාමයක්"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "signon සත්යාපන ක්රමය භාවිතා කිරීමේදී හිස් signon සැසි නාමයක්"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "singon සත්යාපන ක්රමය භාවිතා කිරීමේදී signon URL සඳහා හිස් අගයක්"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "pmadb භාවිතා කිරීමේදී phpMyAdmin පරිපාලක භාවිතා කරන්නා සඳහා හිස් අගයක්"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "pmadb භාවිතා කිරීමේදී phpMyAdmin පරිපාලක භාවිතා කරන්නාගේ මුරපදය සඳහා හිස් අගයක්"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "වැරදි IP යොමුව: %s"
@@ -5810,21 +5815,21 @@ msgstr "%s දිගුව සොයාගත නොහැක. කරුණා
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්රසාද පරීක්ෂා කරන්න."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "තොරතුරු..."
@@ -5888,7 +5893,7 @@ msgstr "වගුව සාදන්න"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "නම"
@@ -6049,25 +6054,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "MySQL සේවාදායකයාගේ සංස්කරණය"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%2$s ශාඛාවේ %1$s සංස්කරණය"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "ශාඛාවක් නොමැත"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Git සංස්කරණය"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "%1$s %2$s විසින් එක් කරන ලද"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "%1$s %2$s විසින් රචිත"
@@ -6735,18 +6740,17 @@ msgid "Display MIME types"
msgstr "MIME වර්ග පෙන්වන්න"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "දායකයා"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "උත්පාදන වේලාව"
@@ -6962,15 +6966,7 @@ msgstr "ජ්යාමිතික නිරූපණයට දත්ත ක
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL ප්රතිළුල"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "උත්පාදනය කරන ලද්දේ"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL හිස් ප්රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි."
@@ -7068,7 +7064,7 @@ msgstr "CSV අදානයේ %d පේළියේ වැරදි තීර
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "වගුවේ නම"
@@ -7422,7 +7418,7 @@ msgstr "PDF සෑදීම"
msgid "Displaying Column Comments"
msgstr "තීර විස්තර පෙන්වීම"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "බ්රව්සර රූපාන්තරනය"
@@ -7521,10 +7517,10 @@ msgid "Variable"
msgstr "විචල්යය"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "අගය"
@@ -7585,7 +7581,7 @@ msgstr "මුරපදය උත්පාදනය කරන්න"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7621,8 +7617,8 @@ msgid "Edit event"
msgstr "සිද්ධිය සංස්කරණය කරන්න"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
@@ -7672,7 +7668,7 @@ msgstr "සමාප්තියේදී සුරකින්න"
msgid "Definer"
msgstr "අර්ථ දක්වන්නා"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "අර්ථ දක්වන්නා \"භාවිත නාමය@සේවාදායක නාමය\" ආකෘතියේ විය යුතුය"
@@ -7726,7 +7722,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "වලංගු නැති නෛත්යක වර්ගය: \"%s\""
@@ -7797,17 +7793,17 @@ msgstr "ආරක්ෂණ වර්ගය"
msgid "SQL data access"
msgstr "SQL දත්ත පරිශීලනය"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "ඔබ නෛත්යකය සඳහා නමක් ලබාදිය යුතුයි"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "පරාමිතිය සඳහා සපයන ලද \"%s\", දිශාව සඳහා වැරදි අගයකි."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -7815,41 +7811,41 @@ msgstr ""
"ENUM, SET, VARCHAR සහ VARBINARY වර්ගවල නෛත්යක පරාමිති සඳහා ඔබ ප්රමාණය/අගයන් ලබා දිය "
"යුතුය."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "සෑම නෛත්යක පරාමිතියක් සඳහාම ඔබ නමක් සහ වර්ගයක් ලබා දිය යුතුය."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "නෛත්යකය සඳහා ඔබ වලංගු ප්රතිදාන වර්ගයක් ලබා දිය යුතුය."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "ඔබ නෛත්යක අර්ථදක්වීමක් ලබා දිය යුතුය."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "කාර්ය පටිපාටියේ අවසන් ප්රකාශය ක්රියාත්මක කිරීමෙන් පේළි %d කට බලපෑවේ ය"
msgstr[1] "කාර්ය පටිපාටියේ අවසන් ප්රකාශය ක්රියාත්මක කිරීමෙන් පේළි %d කට බලපෑවේ ය"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "%s නෛත්යකයේ ප්රතිදානය"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "නෛත්යකය ක්රියාත්මක කරන්න"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "නෛත්යක පරාමිති"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "ශ්රිතය"
@@ -8024,7 +8020,7 @@ msgstr "පටුන"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "ගුණාංග"
@@ -8121,12 +8117,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "%1$s නොදන්නා භාෂාවකි."
@@ -8172,7 +8168,7 @@ msgstr "SQL විමසුමක් සිදු කරන්න/%s සේව
msgid "Run SQL query/queries on database %s"
msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "මකන්න"
@@ -8181,11 +8177,11 @@ msgstr "මකන්න"
msgid "Columns"
msgstr "තීර"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
@@ -8271,12 +8267,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "%s සඳහා අවධානය සක්රීයයි."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8294,36 +8290,36 @@ msgstr ""
"a single quote (\"'\") amongst those values, precede it with a backslash "
"(for example '\\\\xyz' or 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "සූචිය"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "පේළි(යක්) ඉවත් කරන්න"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8331,72 +8327,72 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "කිසිවක් නැත"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "ප්රාථමික"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "සම්පූර්ණ පාඨය"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s ට පසු"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "%s ක්ෂේත්ර(ය) එක් කරන්න"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්රයක්වත් එක් කල යුතුයි."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "ගබඩා යන්ත්ර"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "මෙහෙයවනය"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "වගුව තුල සෙවීම"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "සංස්කරණය/ඇතුල් කරන්න"
@@ -8553,11 +8549,11 @@ msgstr ""
"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා "
"%sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "වින්යාස සුරැකීම අසමත් විය"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8567,8 +8563,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:"
@@ -8726,16 +8722,22 @@ msgstr ""
msgid "No databases"
msgstr "දත්තගබඩා නොමැත"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "වගු නමින් පෙරහන්න"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "වගු නමින් පෙරහන්න"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "වගුවක් සාදන්න"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "කරුණාකර දත්තගබඩාවක් තෝරන්න"
@@ -9859,7 +9861,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "ආරම්භයේ සිට සේවාදායකය වෙත යැවුණු ප්රශ්න ගණන: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "ප්රකාශය"
@@ -10983,12 +10985,12 @@ msgstr "දෝෂ නොසලකන්න"
msgid "Show form"
msgstr "පෝරමය පෙන්වන්න"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -10996,15 +10998,15 @@ msgstr ""
"අනුවාදය කියවීමට අසමත් විය. ඔබ offline වීම හෝ උත්ශ්රේණි (upgrade) සේවාදායකය ප්රතිචාර "
"නොදැක්වීම හෝ නිසා විය හැකිය."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11013,11 +11015,11 @@ msgstr ""
"ඔබ Git අනුවාදය භාවිතා කරයි. [kbd]git pull[/kbd] විධානය භාවිතා කරන්න :-)[br] නවතම "
"ස්ථායී අනුවාදය %s, %s දින නිකුත් කෙරුණු."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "අලුත් ස්ථායී අනුවාදයක් නොමැත"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11026,39 +11028,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11066,21 +11068,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11089,7 +11091,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11103,37 +11105,37 @@ msgstr ""
"ඔබගේ phpMyAdmin පැනලය භාවිත කල හැකිය. %sසත්යාපනය%s ලෙස [kbd]config[/kbd] හෝ "
"[kbd]http[/kbd] තෝරන්න."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip හැකිළුමට%s (%s) කෘත්ය අවශ්ය අතර එය ඔබගේ පද්ධතියේ නොමැත."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip දිගහැරුමට%s (%s) කෘත්ය අවශ්ය අතර එය ඔබගේ පද්ධතියේ නොමැත."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "ඔබගේ දත්තගබඩා සේවාදායකයේ SSL සහයෝගය ඇත්නම් එය භාවිත කල යුතුය."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "එහි කාර්යක්ෂමතාව හේතු කොටගෙන ඔබ mysqli භාවිතා කල යුතුය."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "ඔබ මුරපදයකින් තොරව සේවාදායකයට සම්බන්ධ වීමට ඉඩ ලබා දෙන්නෙහිය."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "මූලය කෙටිය. අවම වශයෙන් අක්ෂර 8 වත් තිබිය යුතුය."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] විශේෂ සලකුණු තිබිය යුතුය."
@@ -11141,8 +11143,8 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em]
msgid "Wrong data"
msgstr "වැරදි දත්ත"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "අන්ය අගයන් පිරික්සන්න"
@@ -11172,21 +11174,29 @@ msgstr "SQL විමසුම පෙන්වමින්"
msgid "Validated SQL"
msgstr "තහවුරු කරන ලද SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL ප්රතිළුල"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "උත්පාදනය කරන ලද්දේ"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "ලේබලය"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11304,7 +11314,7 @@ msgstr "Y අගයන්"
msgid "Table %s already exists!"
msgstr "%s වගුව දැනටමත් පවතී!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "%1$s වගුව සාදන ලදි."
@@ -11505,43 +11515,43 @@ msgstr "කොටස් කිරීම ඉවත් කරන්න"
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "වගු පෙන්වමින්"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "අවකාශ භාවිතය"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "භාවිතය"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "එලදායී"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "පේළි සංඛ්ය ලේඛන"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "ස්ථිතික"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "ගතික"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "පේළියේ දිග"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "පේළියේ ප්රමාණය"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "මීළඟ ක්රමාංකය"
@@ -11824,27 +11834,27 @@ msgstr ""
msgid "Create version"
msgstr "අනුවාදය සාදන්න"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "තීර දෙකක් සඳහා \"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "අමතර සෙවීම් නිර්ණායක"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "ලක්ෂ්ය ලේබල ගත කිරීමට මෙම තීරය භාවිත කරන්න"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "උපරිම තීර ගණන"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "ලක්ෂ්ය පිරික්සීම/සංස්කරණය"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "භාවිතා කරන අයුරු"
diff --git a/po/sk.po b/po/sk.po
index b86d6767da..ef6fe156bf 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-04-14 14:57+0200\n"
-"Last-Translator: Roland Kosicexx \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 14:52+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: slovak \n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 0.9\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Zobraziť všetko"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Číslo stránky:"
@@ -39,30 +39,30 @@ msgstr ""
"bezpečnostných nastavení."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Hľadať"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Hľadať"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Vykonaj"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Komentár k databáze: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentár k tabuľke"
@@ -124,14 +124,14 @@ msgstr "Komentár k tabuľke"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Stĺpec"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Stĺpec"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -156,9 +156,9 @@ msgstr "Typ"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Nulový"
@@ -168,7 +168,7 @@ msgstr "Nulový"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Predvolené"
@@ -177,18 +177,18 @@ msgstr "Predvolené"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Linkovať na"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentáre"
@@ -199,11 +199,11 @@ msgstr "Komentáre"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Nie"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Áno"
msgid "View dump (schema) of database"
msgstr "Zobraziť dump (schému) databázy"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Neboli nájdené žiadne tabuľky v tejto databáze."
@@ -324,8 +324,8 @@ msgstr "Prepnúť na skopírovanú databázu"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -345,8 +345,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Upraviť alebo exportovať relačnú schému"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -356,45 +356,44 @@ msgstr "Upraviť alebo exportovať relačnú schému"
msgid "Table"
msgstr "Tabuľka"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Riadkov"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Veľkosť"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "práve sa používa"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Vytvorenie"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Posledná zmena"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Posledná kontrola"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -484,13 +483,13 @@ msgstr "Použiť tabuľky"
msgid "SQL query on database %s :"
msgstr "SQL dopyt v databáze %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Odošli dopyt"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Prístup odmietnutý"
@@ -527,8 +526,8 @@ msgstr[1] "%s výskyty v tabuľke %s "
msgstr[2] "%s výskytov v tabuľke %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Prechádzať"
@@ -605,11 +604,11 @@ msgstr "Pohľad %s bol odstránený"
msgid "Table %s has been dropped"
msgstr "Tabuľka %s bola odstránená"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Sledovanie je aktívne."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Sledovanie nie je aktívne."
@@ -622,7 +621,7 @@ msgstr ""
"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Pohľad"
@@ -667,7 +666,7 @@ msgstr "Zvoliť neoptimálne"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -676,17 +675,18 @@ msgid "Export"
msgstr "Exportovať"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Náhľad k tlači"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Vyprázdniť"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -729,15 +729,14 @@ msgid "Tracked tables"
msgstr "Sledované tabuľky"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Databáza"
@@ -755,7 +754,7 @@ msgstr "Aktualizované"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Stav"
@@ -946,13 +945,13 @@ msgstr "Zobrazujem obľúbený príkaz"
msgid "The bookmark has been deleted."
msgstr "Záznam z obľúbených bol zmazaný."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Súbor sa nedá prečítať"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -982,7 +981,7 @@ msgstr ""
"Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu "
"inštaláciu!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Príkaz %s bol zaradený medzi obľúbené"
@@ -1009,8 +1008,8 @@ msgstr ""
"že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený "
"časový limit behu skriptu v php."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1121,9 +1120,9 @@ msgid "Close"
msgstr "Zavrieť"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Upraviť"
@@ -1147,7 +1146,7 @@ msgstr "Statické data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Celkom"
@@ -1158,12 +1157,12 @@ msgid "Other"
msgstr "Ostatné"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1245,13 +1244,13 @@ msgid "System swap"
msgstr "Stránkovacia oblasť"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1309,27 +1308,27 @@ msgid "Connections"
msgstr "Spojenia"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1369,9 +1368,9 @@ msgstr "Pridajte prosím aspoň jednu hodnotu do série"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Žiadny"
@@ -1562,7 +1561,7 @@ msgstr "Vysvetliť výstup"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Čas"
@@ -1886,7 +1885,7 @@ msgstr "%d nie je platné číslo riadku."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1900,7 +1899,7 @@ msgstr "Skryť parametre vyhľadávania"
msgid "Show search criteria"
msgstr "Zobraziť parametre vyhľadávania"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Zoomovacie vyhľadávanie"
@@ -2070,7 +2069,7 @@ msgstr "Zmeniť heslo"
msgid "More"
msgstr "Viac"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2157,63 +2156,63 @@ msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Máj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dec"
@@ -2251,32 +2250,32 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Po"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Út"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "St"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Št"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pi"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "So"
@@ -2418,11 +2417,11 @@ msgstr ""
"Konfiguračný súbor má zlé prístupové práva, nemal by byť zapisovateľný pre "
"všetkých!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Veľkosť písma"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Príliš veľa chybových správ, niektoré neboli zobrazené."
@@ -2430,13 +2429,13 @@ msgstr "Príliš veľa chybových správ, niektoré neboli zobrazené."
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize "
"v php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2444,27 +2443,27 @@ msgstr ""
"Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá "
"bola nastavená v HTML formulári."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Súbor bol nahraný len čiastočne."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Chýba adresár pre dočasné súbory."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Chyba pri zápise súboru na disk."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Nahrávanie súboru bolo zastavené rozšírením."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Neznáma chyba pri nahrávaní súboru."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2472,11 +2471,11 @@ msgstr ""
"Chyba pri presune nahrávaného súboru, viď [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Chyba pri presúvaní nahraného súboru."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Nahraný súbor sa nedá prečítať (presunúť)."
@@ -2490,7 +2489,7 @@ msgstr "Nebol definovaný žiadny index!"
msgid "Indexes"
msgstr "Indexy"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2528,46 +2527,46 @@ msgstr ""
"Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne "
"odstránený."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Databázy"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Štruktúra"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Vložiť"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operácie"
@@ -2648,13 +2647,13 @@ msgstr ""
msgid "Engines"
msgstr "Systémy"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Chyba"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2662,7 +2661,7 @@ msgstr[0] "Ovplyvnený bol %1$d riadok."
msgstr[1] "Ovplyvnené boli %1$d riadky."
msgstr[2] "Ovplyvnených bolo %1$d riadkov."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2670,7 +2669,7 @@ msgstr[0] "Bol zmazaný %1$d riadok."
msgstr[1] "Boli zmazané %1$d riadky."
msgstr[2] "Bolo zmazaných %1$d riadkov."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2715,53 +2714,53 @@ msgstr "%s bol zakázaný na tomto MySQL serveri."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Tento MySQL server nepodporuje úložný systém %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "neznámy stav tabuľky: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Zdrojová databáza"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Vzhľad %s nebol nájdený!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Chybná databáza"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Chybné meno tabuľky"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabuľka %s bola premenovaná na %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Nepodarilo sa uložiť nastavenia tabuľky"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2769,16 +2768,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Náhľad nie je dostupný."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "zvoliť"
@@ -2830,7 +2829,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2871,13 +2870,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Vytvoriť verziu"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2888,7 +2887,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2906,7 +2905,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2919,7 +2918,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3018,77 +3017,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Vytvoriť nový index"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Linka"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Celkom"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3161,21 +3160,21 @@ msgstr "Voľba serveru"
msgid "Cookies must be enabled past this point."
msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Prihlásenie bez hesla je zakázané v konfigurácií (pozri AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Boli ste neaktívni viac ako %s sekúnd, prihláste sa prosím znovu"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Nedá sa prihlásiť k MySQL serveru"
@@ -3219,18 +3218,18 @@ msgstr "Tabuľky"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Dáta"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Naviac"
@@ -3341,8 +3340,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL dopyt"
@@ -3352,144 +3351,144 @@ msgstr "SQL dopyt"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL hlási: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Nepodarilo sa pripojiť k SQL validátoru!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Vysvetliť SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Preskočiť vysvetlenie SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Bez PHP kódu"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Vytvoriť PHP kód"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Obnoviť"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Bez kontroly SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Skontrolovať SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Upraviť dopyt na tejto stránke"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Upraviť tu"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilovanie"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ne"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%a %d.%B %Y, %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dní, %s hodín, %s minút a %s sekúnd"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Chýbajúci parameter:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Začiatok"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Predchádzajúci"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Ďalší"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Koniec"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Prejsť na databázu "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Kliknite pre prepnutie"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Prechádzať váš počítač:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Zvoľte súbor z upload adresára %s web servera:"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Adresár určený pre upload súborov sa nedá otvoriť"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Žiadny súbor pre nahrávanie"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Spustiť"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Vytlačiť"
@@ -3573,68 +3572,68 @@ msgstr "obidve vyššie uvedené"
msgid "neither of the above"
msgstr "žiadny z vyššie uvedených"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Nie je kladné číslo"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Nie nezáporné číslo"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Neplatné číslo portu"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Nesprávna hodnota"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Hodnota musí byť rovná alebo menšia ako %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Chýba hodnota pre %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "nedostupné"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" vyžaduje rozšírenie %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "import nebude funkčný, chýba funkcia (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "export nebude funkčný, chýba funkcia (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL validátor je vypnutý"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Nebolo nájdené rozšírenie SOAP"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "maximálne %s"
@@ -3653,7 +3652,7 @@ msgid "Set value: %s"
msgstr "Nastavená hodnota: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Obnoviť východziu hodnotu"
@@ -3956,7 +3955,7 @@ msgid "Character set of the file"
msgstr "Znaková sada súboru"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formát"
@@ -4055,7 +4054,7 @@ msgstr "Návestie"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME typ"
@@ -4179,8 +4178,8 @@ msgstr "Prispôsobenie východzích nastavení"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV dáta"
@@ -4616,14 +4615,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minimálny počet tabuliek pre zobrazenie filtra tabuliek"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Minimálny počet tabuliek pre zobrazenie filtra tabuliek"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Reťazec, ktorý rozdeľuje databázy do rôznych úrovní stromu"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Oddeľovač databázového stromu"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4631,39 +4636,39 @@ msgstr ""
"Len odľahčená verzia; zobrazí databázy v strome (určené oddeľovačom "
"nastaveným nižšie)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Zobraziť databázy v strome"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Zakážte túto voľbu ak chcete vidieť všetky databázy súčasne"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Použiť odľahčenú verziu"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Maximálna hĺbka tabuľkového stromu"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Reťazec, ktorý rozdelí tabuľky do rôznych úrovní stromu"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Oddeľovač tabuľkového stromu"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL, na ktoré bude odkazovať logo v navigačnom ráme"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL odkazu loga"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4671,39 +4676,39 @@ msgstr ""
"Otvoriť nové okno v hlavnej okne ([kbd]hlavná[/kbd]) alebo v novom ([kbd]nové"
"[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Cieľ odkazu loga"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Zvýrazní server pod kurzorom myši"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Povoliť zvýrazňovanie"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Maximálny počet tabuliek v zozname nedávno zobrazených tabuliek; nastavte 0 "
"pre vypnutie"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Nedávno použité tabuľky"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Maximálny počet znakov zobrazovanných v nečíselných poliach pri prechádzaní"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Obmedzenie počtu znakov"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4714,11 +4719,11 @@ msgstr ""
"sa môže ľahko stať, že sa zabudnete odhlásiť z ostatných serverov, pokiaľ "
"ich používate viac."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Vymazať všetky cookies pri prihlásení"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4726,11 +4731,11 @@ msgstr ""
"Určuje, či sa má obnoviť predchádzajúce prihlásenia alebo nie v cookie "
"overovacom móde"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Pamätať si užívateľské meno"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4742,48 +4747,48 @@ msgstr ""
"sedenia a bude vymazaná pri zatvorení okna. Toto je odporúčané v "
"nedôveryhodných prostrediach."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Uloženie prihlasovacej cookie"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Určuje, ako dlho je platná prihlasovacie cookie (v sekundách)"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Platnosť prihlasovacej cookie"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Zdvojnásobiť veľkosť editačného poľa pre stĺpec typu LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Väčšie editačné pole pre LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Maximálny počet znakov pri zobrazení SQL dopytu"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Mazimálna dĺžka zobrazeného SQL dopytu"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Uživatelia nemôžu nastaviť vyššiu hodnotu"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "Maximálny počet databáz zobrazených v ľavom ráme a zozname databáz"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Najvyšší počet databáz"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4793,19 +4798,19 @@ msgstr ""
"obsahuje viac riadkov, zobrazia sa odkazy "Predchádzajúci" a ""
"Ďalší"."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maximálny počet zobrazených riadkov"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Maximálny počet tabuliek zobrazených v zozname tabuliek"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Maximum tabuliek"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4813,11 +4818,11 @@ msgstr ""
"Vypnúť štandardné varovanie o chýbajúcom rozšírení mcrypt pri cookie "
"overovaní"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "varovanie o mcrypte"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4825,45 +4830,45 @@ msgstr ""
"Počet bytov, ktoré môže alokovať skript, napr. [kbd]32M[/kbd] ([kbd]0[/kbd] "
"ruší obmedzenia)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Obmedzenie pamäte"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
#, fuzzy
#| msgid "These are Edit, Inline edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links"
msgstr "Toto sú odkazy na Upraviť, Upraviť tu, Kopírovať a Odstrániť"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Kde zobraziť linky riadkov tabuľky"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Použiť prirodzené triedenie pre mena tabuliek a databáz"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Prirodzené poradie"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Použiť len ikony, len text alebo obidve"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Navigašná lišta s ikonami"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "použiť medzipamäť pre GZip výstup pre zvýšenie rýchlosti HTTP prenosu"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Medzipamäť pre GZip výstup"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4871,19 +4876,19 @@ msgstr ""
"[kbd]SMART[/kbd] - t.j. zostupné radenie pre polia typu TIME, DATE, DATETIME "
"a TIMESTAMP, ostatné budú radené vzostupne"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Východzie radenie"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Použiť trvalé (persistent) spojenia k MySQL databázam"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Trvalé spojenia"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4893,23 +4898,23 @@ msgstr ""
"niektorá z vyžadovaných tabuliek pre miesto uloženia phpMyAdmin konfigurácie "
"nebola nájdená"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Chýbajú tabuľky pre miesto uloženia phpMyAdmin konfigurácie"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Zobrazenie ikon pre operácie s tabuľkami"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Zakázať úpravu polí typu BLOB a BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Chrániť binárne polia"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4920,112 +4925,112 @@ msgstr ""
"zobrazeniu histórie dopytoj Java Scriptové funkcie (bude stratená pri "
"zavretí okna)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Trvalá história dopytov"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Koľko dopytov sa má držať v histórii"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Dĺžka histórie dopytov"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Zobrazený panel pri otvorení nového okna dopytov"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Východzí panel okna dopytov"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Výška okna dopytov (v pixeloch)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Výška okna dopytov"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Šírka okna dopytov (v pixeloch)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Šírka okna dopytov"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Zvoľte, ktorá funkcia bude použitá pre konverziu znakových sád"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Prekódovací nástroj"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Pri prechádzaní tabuliek sa pre každú uloží nastavenie triedenia"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Pamätať si triedenie tabuľky"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "Opkovať hlavičku každých X buniek, [kbd]0[/kbd] vypne túto možnosť"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Opakovať záhlavie"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Adresár na serveri pre ukladanie exportov"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Adresár pre ukladanie"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Nechajte prázdne pokiaľ nepoužívate"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Poradie overovania hostiteľa"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Nechajte prázdne, ak chcete použiť východzie nastavenia"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Pravidlá overovania hostiteľa"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Povoliť prihlásenie bez hesla"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Povoliť prihlásenia užívateľa root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "Názov pre zobrazenie pri použití HTTP autorizácie"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
#, fuzzy
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5035,19 +5040,19 @@ msgstr ""
"overovanie[/a] (Neuložená vo vašom koreňovom adresári dokumentov, doporučené "
"umiestneie: -etc-swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Konfiguračný súbor SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Výber overovacej metódy"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Typ overovania"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5055,11 +5060,11 @@ msgstr ""
"Nechajte prázdne pre žiadnu podporu [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]záložiek[/a], navrhované: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabuľka záložiek"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5067,31 +5072,31 @@ msgstr ""
"Nechajte prázdne pre žiadne komentáre ci mime typy polí, navrhované: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabuľka informácii o poliach"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Komprimácia spojenia k MySQL serveru"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Komprimovať pripojenie"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Ako sa pripájať k serveru, nechajte [kbd]tcp[/kbd] ak si nie ste istý"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Typ pripojenia"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Heslo kontrolného užívateľa"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5099,31 +5104,31 @@ msgstr ""
"Špeciálny MySQL užívateľ s obmedzenými právami, viac informácii je "
"dostupných na [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Kontrolný užívateľ"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Kontrolný užívateľ"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Spočítavať tabuľky pri zobrazovaní zoznamu databáz"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Počítať tabuľky"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5131,11 +5136,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie návrhára, východzie nastavenie: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabuľka návrhára"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5143,27 +5148,27 @@ msgstr ""
"Viac informácii na [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Zakazať použitie INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "Ktoré rozšírenie PHP sa má použiť; použite mysqli ak je to možné"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Použiť rozšírenie PHP"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Skryť databázy odpovedajúce regulárnemu výrazu (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Skryť databázy"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5171,43 +5176,43 @@ msgstr ""
"Nechať prázdne pre vypnutie histórie SQL dopytov, navrhované: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabuľka histórie SQL dopytov"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Meno počítača, kde beží MySQL server"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Meno servera"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL pri odhlásení"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Maximálny počet tabuliek zobrazených v zozname tabuliek"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Pokusiť sa pripojiť bez hesla"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Pripojiť sa bez hesla"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5221,30 +5226,30 @@ msgstr ""
"ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť [kbd]*[/"
"kbd] na konci pre zobrazenie ostatných v abecednom poradí."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Zobraziť len vybrané databázy"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Nechajte prázdne, pokiaľ nepoužívate prihlasovací config"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Heslo pre prihlasovací config"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie podpory pre PDF schémy, navrhované: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF schéma: tabuľka stránok"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5254,20 +5259,20 @@ msgstr ""
"viď [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Ak ponecháte prázdne, "
"bude táto možnosť vypnutá. Doporučená hodnota: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Meno databázy"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Port, na ktorom počúva MySQL server, nechajte prázdne pre východziu hodnotu"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Port servera"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5275,11 +5280,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie možnosti \"trvalého\" ukladania nedívnych "
"tabuliek. Odporúčaná hodnota: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Naposledy použitá tabuľka"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5287,19 +5292,19 @@ msgstr ""
"Nechajte prázdne pre vypnutie [a@http://wiki.phpmyadmin.net/pma/relation]"
"relation-links[/a] podpory, navrhované: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relačná tabuľka"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL príkaz pre načítanie dostupných databáz"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES príkaz"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5307,43 +5312,43 @@ msgstr ""
"Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy "
"overovania[/a]"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Meno prihlasovacej session/sedenia"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL pri prihlásení"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Socket na ktorom počúva MySQL server, nechajte prázdne pre východziu hodnotu"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Socket servera"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Povoliť SSL pre pripojenie k MySQL serveru"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Použiť SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Nechajte prázdne pro vypnutie podpory pre PDF schému, navrhované: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF schéma: tabuľka súradníc"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5351,11 +5356,11 @@ msgstr ""
"Tabuľka obsahujúca popisy polí. Nechajte prázdnu pre vypnutie tejto funkcie. "
"Odporúčaná hodnota: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Zobrazenie stĺpcov tabuľky"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5363,11 +5368,11 @@ msgstr ""
"Nechajte prázdne pre vypnutie podpory \"trvalého\" ukladania nastavení, "
"navrhované: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Tabuľka pre nastavenie rozhrania"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5375,11 +5380,11 @@ msgstr ""
"Či chcete pridať príkaz DROP DATABASE IF EXISTS do logu ako prvý riadok pri "
"vytváraní databázy."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Pridať DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5387,11 +5392,11 @@ msgstr ""
"Či chcete pridať príkaz DROP TABLE IF EXISTS do logu ako prvý riadok pri "
"vytváraní tabuľky."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Pridať DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5399,21 +5404,21 @@ msgstr ""
"Či chcete pridať príkaz DROP VIEW IF EXISTS do logu ako prvý riadok pri "
"vytváraní pohľadu."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Pridať DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Určuje zoznam príkazov, ktoré sa automaticky použijú pri vytváraní nových "
"verzií."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Sledované príkazy"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5421,22 +5426,22 @@ msgstr ""
"Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov, "
"navrhované: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabuľka pre sledovanie SQL dopytov"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Či má sledovací mechanizmus automaticky vytvárať verzie tabuliek a pohľadov."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Automaticky vytvárať verzie"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "ve blank for no user preferences storage in database, suggested: [kbd]"
@@ -5448,15 +5453,15 @@ msgstr ""
"Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v "
"databáze. Odporúčaná hodnota: [kbd]pma_config[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabuľka pre užívateľské nastavenia"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5464,21 +5469,21 @@ msgstr ""
"Užívateľsky prívetivý popis tohto servera. Ak necháte prízdne, zobrazí sa "
"namiesto popisu meno servera."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Dlhé meno tohto servera"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Či sa bude užívateľovi zobrazovať tlačidlo "zobraziť všetky (riadky)"
"""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Povoliť zobraziť všetky riadky"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5489,56 +5494,56 @@ msgstr ""
"konfiguračnom súbore; toto nemá vplyv na možnosť vykonať rovnaký príkaz "
"priamo"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Zobraziť formulár na zmenu hesla"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Zobraziť formulár na vytvorenie databázy"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "Zobraziť viac operácii"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Zobraziť stav master replikácie"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
"Určuje, či sa má zobraziť voľba smeru vypisovania pri prechádzaní tabuľky"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Zobraziť smer zobrazovania"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5546,31 +5551,31 @@ msgstr ""
"Definuje, či sa majú alebo nemajú zobrazovať typové polia v móde úprav/"
"vkladania"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Zobraziť typy polí"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Zobraziť zoznam funkcií v móde úprav"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Zobraziť zoznam funkcií"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
#, fuzzy
#| msgid "Where to show the table row links"
msgid "Whether to show hint or not"
msgstr "Kde zobraziť linky riadkov tabuľky"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show indexes"
msgid "Show hint"
msgstr "Zobraziť indexy"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5578,53 +5583,53 @@ msgstr ""
"Zobraziť odkaz na výstup [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a] funkcie"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Zobraziť odkaz na phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Zobraziť podrobné informácie o MySQL serveri"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Určuje, či sa budú zobrazovať SQL dopyty generované phpMyAdminom"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Zobraziť SQL dopyty"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Skryť vyhľadávacie pole"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Povoliť zobrazenie štatistík o databázach a tabuľkách (napr. využité miesto)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Zobraziť štatistiky"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Zobraziť komentár k databáze namiesto mena"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5632,30 +5637,30 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Zobraziť komentár k tabuľke namiesto mena"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Zobraziť komentáre tabuľky vo vyskakovacom okne nápovedy"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Označiť použité tabuľky a umožniť zobrazovanie databáz s uzamknutými "
"tabuľkami"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Preskočiť zamknuté tabuľky"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Vyžaduje povolené kontrolovanie SQL"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5665,7 +5670,7 @@ msgstr "Vyžaduje povolené kontrolovanie SQL"
msgid "Password"
msgstr "Heslo"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5673,11 +5678,11 @@ msgstr ""
"[strong]Varovanie:[/strong] vyžaduje nainštalované rozšírenia PHP SOAP alebo "
"PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Povoliť kontrolovanie SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5685,22 +5690,22 @@ msgstr ""
"Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie [kbd]anonymous"
"[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Užívateľ"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Na hlavnej stránke je zobrazené varovanie pokiaľ je detekované rozšírenie "
"Suhosin"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Varovanie Suhosin rozšírenia"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5708,11 +5713,11 @@ msgstr ""
"Veľkosť editačného okna (počet stĺpcov). Táto hodnota bude zväčšená pre okná "
"SQL dopytov (*2) a pre dopytové okno (*1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Stĺpce s textovou oblasťou"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5720,31 +5725,31 @@ msgstr ""
"Veľkosť editačného okna (počet riadkov). Táto hodnota bude zväčšená pre okná "
"SQL dopytov (*2) a pre dopytové okno (*1,25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Riadkov v textovej oblasti"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Popis okna prehliadača pri výbere databázy"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Popis okna prehliadača keď nie je nič vybrané"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Východzí popis"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Popis okna prehliadača keď je vybraný server"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Popis okna prehliadača keď je vybraná tabuľka"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5752,27 +5757,27 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Zoznam dôveryhodných proxy pre povolenie/zakázanie IP adresy"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Adresár na serveri, kde môžete nahrať súbor pre import"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Adresár pre nahrávanie"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Povoliť prehľadávať celú databázu"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Použiť databázové vyhľadávanie"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5780,27 +5785,27 @@ msgstr ""
"Pokiaľ je vypnuté, užívatelia nemôžu zmeniť žiadne z nižšie uvedených "
"nastavení, bez ohľadu na zaškrtávacie pole vpravo"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Povoliť záložku Pre vývojára v nastaveniach"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Skontrolovať najnovšiu verziu"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Kontrola verzie"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5808,7 +5813,7 @@ msgstr ""
"Povoliť [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] "
"kompresiu pre import a export operácie"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5830,85 +5835,85 @@ msgid "Signon authentication"
msgstr "Signon authentication"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV pomocou LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Tabuľkový procesor Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Vlastné"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Nastavenia exportu databáz"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV pre MS Excel dáta"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "Nepodarilo sa pripojiť k MySQL serveru"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Nepodarilo sa pripojiť k MySQL serveru"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"Pri použití nastavenej autorizačnej metódy nebolo vyplnené užívateľské meno"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Nesprávna IP adresa: %s"
@@ -5928,7 +5933,7 @@ msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5936,15 +5941,15 @@ msgstr ""
"Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne "
"nastavený)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Server neodpovedá."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Podrobnosti..."
@@ -6008,7 +6013,7 @@ msgstr "Vytvoriť tabuľku"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Názov"
@@ -6167,26 +6172,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Prevod znakovej sady:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version"
msgid "committed on %1$s by %2$s"
msgstr "Vytvoriť verziu"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version"
msgid "authored on %1$s by %2$s"
@@ -6894,18 +6899,17 @@ msgid "Display MIME types"
msgstr "Zobraziť MIME typy"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Hostiteľ"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Vygenerované"
@@ -7109,15 +7113,7 @@ msgstr "Neboli nájdené žiadne dáta pre graf."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Výsledok SQL dopytu"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Vygenerované"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)."
@@ -7214,7 +7210,7 @@ msgstr "Chybný počet položiek v CSV vstupe na riadku %d."
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Názov tabuľky"
@@ -7571,7 +7567,7 @@ msgstr "Vytváranie PDF"
msgid "Displaying Column Comments"
msgstr "Zobrazovať komentáre stĺpcov"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformácia pri prehliadaní"
@@ -7675,10 +7671,10 @@ msgid "Variable"
msgstr "Premenná"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Hodnota"
@@ -7739,7 +7735,7 @@ msgstr "Vytvoriť Heslo"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7780,8 +7776,8 @@ msgid "Edit event"
msgstr "Webový server"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Chyba pri spracovaní požiadavky"
@@ -7841,7 +7837,7 @@ msgstr "Zachovať pri ukončení"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7905,7 +7901,7 @@ msgstr ""
"Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie 'mysqli'."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Chybný typ rutiny: \"%s\""
@@ -7989,35 +7985,35 @@ msgstr "Zabezpečenie"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8025,22 +8021,22 @@ msgstr[0] "Posledným príkazom v procedúre bol ovplyvnený %d riadok"
msgstr[1] "Posledným príkazom v procedúre boli ovplyvnené %d riadky"
msgstr[2] "Posledným príkazom v procedúre bolo ovplyvnených %d riadkov"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Výsledky spustenia rutiny %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Spustiť rutinu"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcia"
@@ -8236,7 +8232,7 @@ msgstr "Obsah"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atribúty"
@@ -8335,12 +8331,12 @@ msgid "Toggle scratchboard"
msgstr "Zobraziť grafický návrh"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznámy jazyk: %1$s."
@@ -8386,7 +8382,7 @@ msgstr "Spustiť SQL príkaz(y) na serveri %s"
msgid "Run SQL query/queries on database %s"
msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Vyčistiť"
@@ -8395,11 +8391,11 @@ msgstr "Vyčistiť"
msgid "Columns"
msgstr "Stĺpce"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Pridať tento SQL dopyt do obľúbených"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Dovoliť používať túto položku všetkým používateľom"
@@ -8499,13 +8495,13 @@ msgstr ""
"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
"%sdocumentation%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Sledovanie je aktívne."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8517,7 +8513,7 @@ msgstr ""
"apostrof (\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho "
"spätného lomítka (napr. '\\\\xyz' alebo 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8525,19 +8521,19 @@ msgstr ""
"Pre predvolené hodnoty, prosím zadajte iba jednu hodnotu bez úvodzoviek "
"alebo uvádzacích znakov, napr.: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Index"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Odstrániť stĺpce"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8546,11 +8542,11 @@ msgstr ""
"Pre zoznam dostupných parametrov a ich MIME typov kliknite na %spopisy "
"transformácií%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Parametre transformácie"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8562,74 +8558,74 @@ msgstr ""
"jednoduché úvodzovky (\"'\") medzi týmito hodnotami, vložte pred nich spätné "
"lomítko (napr. '\\\\xyz' alebo 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Získať viac miesta pre úpravy"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Žiadny"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Podľa zadania:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primárny"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Celý text"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Po %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Pridať %s stĺpcov"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Musíte pridať aspoň jeden stĺpec."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Úložný Systém"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operátor"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Hľadať"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8784,12 +8780,12 @@ msgstr ""
"Vaše nastavenia budú uložené len počas tohto prihlásenia. Pre trvalé "
"nastavenie potrebujete nastaviť %smiesto uloženia phpMyAdmin konfigurácie%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
msgid "Could not save configuration"
msgstr "Slave replikácia"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8799,8 +8795,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "V ZIP archíve neboli nájdené žiadne súbory!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Chyba v ZIP archíve:"
@@ -8979,16 +8975,22 @@ msgstr ""
msgid "No databases"
msgstr "Žiadne databázy"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtrovať tabuľky podľa mena"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtrovať tabuľky podľa mena"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Vytvoriť tabuľku"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Prosím vyberte si databázu"
@@ -10144,7 +10146,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Dopytov od spustenia: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Údaj"
@@ -11246,9 +11248,8 @@ msgid "Global value"
msgstr "Globálna hodnota"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
-#, fuzzy
msgid "Download"
-msgstr "Stiahnuť súbor"
+msgstr "Stiahnuť"
#: setup/frames/form.inc.php:25
msgid "Incorrect formset, check $formsets array in setup/frames/form.inc.php"
@@ -11382,37 +11383,37 @@ msgstr ""
msgid "Show form"
msgstr "Zobraziť farbu"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11421,39 +11422,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11461,21 +11462,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11484,7 +11485,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11494,37 +11495,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11534,8 +11535,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Žiadne dáta"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Prejsť hodnoty cudzích kľúčov"
@@ -11567,21 +11568,29 @@ msgstr "Zobrazujem SQL dotaz"
msgid "Validated SQL"
msgstr "Skontrolované SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Výsledok SQL dopytu"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Vygenerované"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexami v tabuľke `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Názov"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabuľka %1$s bola úspešné upravená"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11714,7 +11723,7 @@ msgstr "Hodnota"
msgid "Table %s already exists!"
msgstr "Tabuľka %s už existuje!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabuľka %1$s bola vytvorená."
@@ -11926,45 +11935,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Skontrolovať referenčnú integritu:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Zobraziť tabuľky"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Zabrané miesto"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Využitie"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektívny"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Štatistika riadku"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statický"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamický"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Dĺžka riadku"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Veľkosť riadku"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12260,33 +12269,33 @@ msgstr ""
msgid "Create version"
msgstr "Vytvoriť verziu"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Skryť parametre vyhľadávania"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Maximálny počet zobrazených riadkov"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/po/sl.po b/po/sl.po
index a1d76818cb..498a10e88d 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-10 17:02+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
@@ -11,8 +11,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
-"n%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Pokaži vse"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Številka strani:"
@@ -39,30 +39,30 @@ msgstr ""
"pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Iskanje"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Iskanje"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Izvedi"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Pripomba zbirke podatkov: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Pripomba tabele"
@@ -124,14 +124,14 @@ msgstr "Pripomba tabele"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Stolpec"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Stolpec"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Vrsta"
@@ -156,9 +156,9 @@ msgstr "Vrsta"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -168,7 +168,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Privzeto"
@@ -177,18 +177,18 @@ msgstr "Privzeto"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Povezave z"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Pripombe"
@@ -199,11 +199,11 @@ msgstr "Pripombe"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Da"
msgid "View dump (schema) of database"
msgstr "Preglej povzetek stanja zbirke podatkov"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "V zbirki podatkov ni mogoče najti tabel."
@@ -322,8 +322,8 @@ msgstr "Preklopi na kopirano zbirko podatkov"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Uredi ali izvozi relacijsko shemo"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Uredi ali izvozi relacijsko shemo"
msgid "Table"
msgstr "Tabela"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Vrstic"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Velikost"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "v uporabi"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Ustvarjeno"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Zadnjič posodobljeno"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Zadnjič pregledano"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -483,13 +482,13 @@ msgstr "Uporabi tabele"
msgid "SQL query on database %s :"
msgstr "Poizvedba SQL na zbirki podatkov %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Izvedi poizvedbo"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Dostop zavrnjen"
@@ -525,8 +524,8 @@ msgstr[2] "%1$s zadetki v tabeli %2$s "
msgstr[3] "%1$s zadetkov v tabeli %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Prebrskaj"
@@ -604,11 +603,11 @@ msgstr "Pogled %s je zavržen"
msgid "Table %s has been dropped"
msgstr "Tabela %s je zavržena"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Sledenje je aktivno."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Sledenje ni aktivno."
@@ -620,7 +619,7 @@ msgid ""
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Pogled"
@@ -665,7 +664,7 @@ msgstr "Preveri prekoračene"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -674,17 +673,18 @@ msgid "Export"
msgstr "Izvozi"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Pogled za tiskanje"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Izprazni"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -727,15 +727,14 @@ msgid "Tracked tables"
msgstr "Sledene tabele"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Zbirka podatkov"
@@ -753,7 +752,7 @@ msgstr "Posodobljeno"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Stanje"
@@ -944,13 +943,13 @@ msgstr "Prikazovanje zaznamka"
msgid "The bookmark has been deleted."
msgstr "Zaznamek je odstranjen."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Ne morem prebrati datoteke"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -981,7 +980,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Zaznamek %s je ustvarjen"
@@ -1008,8 +1007,8 @@ msgstr ""
"navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če "
"povečate vaše časovne omejitve PHP."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1118,9 +1117,9 @@ msgid "Close"
msgstr "Zapri"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Uredi"
@@ -1144,7 +1143,7 @@ msgstr "Statični podatki"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Skupaj"
@@ -1155,12 +1154,12 @@ msgid "Other"
msgstr "Drugo"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1243,13 +1242,13 @@ msgid "System swap"
msgstr "Sistemska izmenjava"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1307,27 +1306,27 @@ msgid "Connections"
msgstr "Povezave"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1367,9 +1366,9 @@ msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Brez"
@@ -1554,7 +1553,7 @@ msgstr "Razloži izhod"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Čas"
@@ -1864,7 +1863,7 @@ msgstr "%d ni veljavna številka vrstice."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1878,7 +1877,7 @@ msgstr "Skrij iskalne pogoje"
msgid "Show search criteria"
msgstr "Prikaži iskalne pogoje"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Iskanje s povečevanjem"
@@ -2054,7 +2053,7 @@ msgstr "Spremeni geslo"
msgid "More"
msgstr "Več"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2141,63 +2140,63 @@ msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "dec"
@@ -2235,32 +2234,32 @@ msgid "Sun"
msgstr "ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "sre"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "čet"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "pet"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "sob"
@@ -2403,11 +2402,11 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Napačna dovoljenja konfiguracijski datoteke; ne sme biti vsem zapisljiva!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Velikost pisave"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Preveč sporočil o napakah; nekatera zato niso prikazana."
@@ -2415,11 +2414,11 @@ msgstr "Preveč sporočil o napakah; nekatera zato niso prikazana."
msgid "File was not an uploaded file."
msgstr "Datoteka ni naložen datoteka."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2427,27 +2426,27 @@ msgstr ""
"Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu "
"HTML."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Naložena datoteka je bila naložena samo delno."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Manjka začasna mapa."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Pisanje datoteke na disk je spodletelo."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Nalaganje datoteke je ustavila razširitev."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Neznana napaka pri nalaganju datoteke."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2455,11 +2454,11 @@ msgstr ""
"Napaka pri premikanju naložene datoteke, glej [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Napaka pri premikanju naložene datoteke."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Ne morem prebrati (premakniti) naložene datoteke."
@@ -2473,7 +2472,7 @@ msgstr "Ni definiranega indeksa!"
msgid "Indexes"
msgstr "Indeksi"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2511,46 +2510,46 @@ msgstr ""
"Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko "
"odstrani."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Zbirke podatkov"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Strežnik"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Vstavi"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operacije"
@@ -2629,13 +2628,13 @@ msgstr "Vtičniki"
msgid "Engines"
msgstr "Pogoni"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Napaka"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2644,7 +2643,7 @@ msgstr[1] "Spremenil sem %1$d vrstici."
msgstr[2] "Spremenil sem %1$d vrstice."
msgstr[3] "Spremenil sem %1$d vrstic."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2653,7 +2652,7 @@ msgstr[1] "Izbrisal sem %1$d vrstici."
msgstr[2] "Izbrisal sem %1$d vrstice."
msgstr[3] "Izbrisal sem %1$d vrstic."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2699,43 +2698,43 @@ msgstr "%s je onemogočeno za ta strežnik MySQL."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "neznano stanje tabele: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "Izvorne zbirke podatkov `%s` nisem našel!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "Ciljne zbirke podatkov `%s` nisem našel!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Neveljavna zbirka podatkov"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Neveljavno ime tabele"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Napaka pri preimenovanju tabele %1$s v %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabelo %1$s sem preimenoval v %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2744,7 +2743,7 @@ msgstr ""
"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2755,16 +2754,16 @@ msgstr ""
"spremembe po osvežitvi te strani ne bodo stalne. Prosimo, preverite, ali je "
"bila struktura tabele spremenjena."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Za temo %s ni bila najdena veljavna pot slik!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Predogled ni na voljo."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "uporabi"
@@ -2827,7 +2826,7 @@ msgstr ""
"9.223.372.036.854.775.807, nepredznačen razpon pa 0 do "
"18.446.744.073.709.551.615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2881,12 +2880,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Vzdevek za BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Datum; podprt je razpon od %1$s do %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Kombinacija datuma in časa; podprt je razpon od %1$s do %2$s"
@@ -2899,7 +2898,7 @@ msgstr ""
"Časovni žig; razpon je od 1970-01-01 00:00:01 UTC do 2038-01-09 03:14:07 "
"UTC, shranjeno kot število sekund od dobe (1970-01-01 00:00:00 UTC)"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Čas; razpon je od %1$s do %2$s"
@@ -2920,7 +2919,7 @@ msgstr ""
"Niz stalne dolžine (0–255, privzeto 1), ki je ob shranjevanju vedno z desne "
"zapolnjen s presledki do določene dolžine"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2937,7 +2936,7 @@ msgstr ""
"Stolpec TEXT, dolg največ 255 (2^8 - 1) znakov, shranjen z enobajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3054,34 +3053,31 @@ msgstr "Zbirka večkotnikov"
msgid "A collection of geometry objects of any type"
msgstr "Zbirka geometrijskih objektov katere koli vrste"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "Numerično"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Create an index"
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Datum in čas"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "Niz"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Prostorsko"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr "4-bitno celo število; razpon je od -2.147.483.648 do 2.147.483.647"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3089,25 +3085,25 @@ msgstr ""
"8-bitno celo število; razpon je od -9.223.372.036.854.775.808 do "
"9.223.372.036.854.775.807"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr "Sistemsko privzeto število z decimalno vejico z natančnostjo double"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "Res ali ni res"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Vzdevek za BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
"Shrani vsesplošno edinstven označevalnik (Universally Unique Identifier, "
"UUID)"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
@@ -3115,7 +3111,7 @@ msgstr ""
"Časovni žig; razpon je od '0001-01-01 00:00:00' UTC do '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) lahko shrani mikrosekunde"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@@ -3123,7 +3119,7 @@ msgstr ""
"Niz spremenljive dolžine (0–65.535); uporablja dvojiško zbirko za vse "
"primerjave"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
@@ -3131,7 +3127,7 @@ msgstr ""
"Stolpec BLOB, dolg največ 65.535 (2^16 - 1) znakov, shranjen s štiribajtno "
"predpono, ki nakazuje dolžino vrednosti v bajtih"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "Naštevanje, izbrano s seznama določenih vrednosti"
@@ -3202,21 +3198,21 @@ msgstr "Izbira strežnika"
msgid "Cookies must be enabled past this point."
msgstr "Če želite še naprej uporabljati program, morate omogočiti piškotke."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
"Prijava brez gesla je prepovedana s konfiguracijo (glej AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Brez aktivnosti v zadnjih %s sekundah; prosimo, prijavite se znova"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Ne morem se prijaviti v strežnik MySQL"
@@ -3260,18 +3256,18 @@ msgstr "Tabele"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Podatki"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Presežek"
@@ -3380,8 +3376,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "Poizvedba SQL"
@@ -3391,144 +3387,144 @@ msgstr "Poizvedba SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL je vrnil: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Ne morem se povezati s preverjalnikom SQL!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Razloži stavek SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Preskoči razlago stavka SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Brez kode PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Ustvari kodo PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Osveži"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Preskoči preverjanje pravilnosti SQL stavka"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Preveri pravilnost stavka SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Urejanje te poizvedbe v vrstici"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "V vrstici"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profiliranje"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y ob %H.%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dni, %s ur, %s minut in %s sekund"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Manjkajoč parameter:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Začetek"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Prejšnja"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Naslednja"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Konec"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Preskoči na zbirko podatkov "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Kliknite za preklop"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Prebrskajte svoj računalnik:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Nobene datoteke ni za naložiti"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Izvedi"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Natisni"
@@ -3612,68 +3608,68 @@ msgstr "oboje zgoraj"
msgid "neither of the above"
msgstr "nič od zgoraj"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Ni pozitivno število"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Ni nenegativno število"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Neveljavna številka vrat"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Napačna vrednost"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Vrednost mora biti enaka ali nižja od %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Manjkajoči podatki za %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "ni na voljo"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" potrebuje razširitev %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "uvoz ne bo deloval, manjka funkcija (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "izvoz ne bo deloval, manjka funkcija (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "Preverjalnik SQL je onemogočen"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "Razširitev SOAP ni najdena"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "največ %s"
@@ -3693,7 +3689,7 @@ msgid "Set value: %s"
msgstr "Določi vrednost: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Povrni privzeto vrednost"
@@ -3996,7 +3992,7 @@ msgid "Character set of the file"
msgstr "Nabor znakov datoteke"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Oblika"
@@ -4095,7 +4091,7 @@ msgstr "Označi ključ"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Vrsta MIME"
@@ -4219,8 +4215,8 @@ msgstr "Prilagodite privzete možnosti"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4655,14 +4651,21 @@ msgstr ""
"Najmanjše število tabel, potrebnih za prikaz polja za filtriranje tabel"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr ""
+"Najmanjše število tabel, potrebnih za prikaz polja za filtriranje tabel"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Niz, ki loči zbirke podatkov v drugi nivo drevesa"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Ločilo drevesa zbirke podatkov"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4670,39 +4673,39 @@ msgstr ""
"Samo lahka različica; prikaže zbirke podatkov v drevesu (določeno z ločilom, "
"navedenim spodaj)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Prikaži zbirke podatkov v drevesu"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Onemogočite to, če želite videti vse zbirke podatkov naenkrat"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Uporabi lahko različico"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Največja globina drevesa tabel"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Niz, ki loči tabele v različne stopnje drevesa"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Ločilo drevesa tabel"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL kamor bo kazal logotip v navigacijskem okvirju"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL-povezava logotipa"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4710,39 +4713,39 @@ msgstr ""
"Odpre povezano stran v glavnem ([kbd]main[/kbd]) ali v novem oknu ([kbd]new[/"
"kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Cilj povezave logotipa"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Poudari strežnik pod miškinim kazalcem"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Omogoči poudarjanje"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Največje število nedavno uporabljenih tabel; določite 0 za onemogočitev"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Nedavno uporabljene tabele"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Največje število znakov prikazanih v katerem koli neštevilčnem stolpcu v "
"načinu brskanja"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Omejitev znakov stolpca"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4753,11 +4756,11 @@ msgstr ""
"hitro povzroči pozabljanje odjavljanja iz ostalih strežnikov, ko ste "
"povezani na več strežnikov."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Izbriši vse piškotke ob odjavi"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4765,11 +4768,11 @@ msgstr ""
"Določi, ali se naj prejšnji prijavni podatki v načinu overovitve piškotkov "
"prikličejo ali ne"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Prikliči uporabniško ime"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4781,50 +4784,50 @@ msgstr ""
"sejo in bo izbrisan takoj, ko zaprete okno brskalnika. To je priporočeno za "
"okolja, ki jim ne zaupate."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Shranjevanje prijavnih piškotkov"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Določa, kako dolgo (v sekundah) je prijavni piškotek veljaven"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Veljavnost prijavnega piškotka"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Dvojna velikost besedilnega polja za stolpce LONGTEXT"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Večje besedilno polje za LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Največje število znakov pri prikazu poizvedbe SQL"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Največja dolžina prikazanega SQL"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Uporabniki ne morejo določiti višje vrednosti"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Največje število zbirk podatkov, prikazanih v levem okvirju in na seznamu "
"zbirk podatkov"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Največ zbirk podatkov"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4834,19 +4837,19 @@ msgstr ""
"rezultatov vsebuje več vrstic, se prikažeta povezavi »Prejšnja« "
"in »Naslednja«."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Največje število vrstic za prikaz"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Največje število tabel prikazanih na seznamu tabel"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Največ tabel"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4854,11 +4857,11 @@ msgstr ""
"Onemogoči privzeto opozorilo, ki se prikaže, če mcrypt manjka za overitev "
"piškotkov"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "Opozorilo mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4866,43 +4869,43 @@ msgstr ""
"Število bajtov, ki jih skript lahko dodeli, npr. [kbd]32M[/kbd] ([kbd]0[/"
"kbd] za neomejeno)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Omejitev spomina"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "To so povezave Uredi, Kopiraj in Izbriši"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Kje naj prikažem povezave vrstic tabel"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Uporabi naravni vrstni red za razvrščanje tabel in imen zbirk podatkov"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Naravni vrstni red"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Uporabi samo ikone, samo besedilo ali oboje"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Ikonska navigacijska vrstica"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "Uporabi izhod medpomnjenja GZip za povečano hitrost v prenosih HTTP"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "Izhod medpomnjenja GZip"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4910,19 +4913,19 @@ msgstr ""
"[kbd]SMART[/kbd] – tj. padajoči vrstni red za stolpce vrste TIME, DATE, "
"DATETIME in TIMESTAMP, v naprotnem primeru naraščajoči vrstni red"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Privzet vrstni red"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Uporabi vztrajne povezave s podatkovnimi zbirkami MySQL"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Vztrajne povezave"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4932,23 +4935,23 @@ msgstr ""
"podatkov Struktura, če katera od tabel, potrebnih za hrambo konfiguracije "
"phpMyAdmin, ni bila najdena"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Manjkajoče tabele hrambe konfiguracije phpMyAdmin"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Ikonski posegi tabel"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Prepreči urejanje stolpcev BLOB in BINARY"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Zaščiti dvojiške stolpce"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4958,111 +4961,111 @@ msgstr ""
"(potrebuje hrambo konfiguracije phpMyAdmin). Če je onemogočeno, se za prikaz "
"zgodovine poizvedb uporabi rutina JavaScript (ki se izgubi ob zaprtju okna)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Trajna zgodovina poizvedb"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Koliko poizvedb je hranjenih v zgodovini"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Dolžina zgodovine poizvedb"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Zavihek, ki se prikaže ob odprtju novega okna za poizvedbe"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Privzet zavihek okna za poizvedbe"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Višina okna poizvedb (v slikovnih pikah)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Višina okna poizvedb"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Širina okna poizvedb (v slikovnih pikah)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Širina okna poizvedb"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Določi katere funkcije bodo uporabljene za pretvorbo nabora znakov"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Pogon rekodiranja"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Med brskanjem po tabelah se razvrščanje vsake tabele ohrani"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Ohrani razvrščanje tabel"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "Ponovi glave vsakih X celic, [kbd]0[/kbd] dezaktivira to funkcijo"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Ponovi glave"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Shrani vse urejene celice naenkrat"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Mapa, kamor se lahko na strežnik shranijo izvozi"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Mapa za shranjevanje"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Pustite prazno, če se ne uporablja"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Zaporedje overovitve gostitelja"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Pustite prazno za privzeto"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Pravila overovitve gostitelja"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Dovoli prijave brez gesla"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Dovoli prijavo root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "Ime področja HTTP Basic Auth, ki se prikaže med HTTP Auth"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "Področje HTTP"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5072,19 +5075,19 @@ msgstr ""
"SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: /etc/swekey."
"conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "Konfiguracijska datoteka SweKey"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Način overovitve za uporabo"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Vrsta overovitve"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5092,11 +5095,11 @@ msgstr ""
"Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]zaznamkov[/a]; predlagano: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabela zaznamkov"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5104,32 +5107,32 @@ msgstr ""
"Pustite prazno, če ne želite pripomb/vrst mime stolpcev; predlagano: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabela informacij stolpcev"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Stisni povezavo s strežnikom MySQL"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Stisni povezavo"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Način povezave s strežnikom; pustite [kbd]tcp[/kbd], če niste prepričani"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Vrsta povezave"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Geslo krmilnega uporabnika"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5137,11 +5140,11 @@ msgstr ""
"Posebni uporabnik MySQL, konfiguriran z omejenimi dovoljenji; več informacij "
"je na voljo na [a@http://wiki.phpmyadmin.net/pma/controluser]wikiji[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Krmilni uporabnik"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5149,19 +5152,19 @@ msgstr ""
"Nadomestni gostitelj, ki ima shrambo konfiguracije; pustite prazno, če "
"želite uporabiti že opredeljen gostitelj"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Krmilni gostitelj"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Preštej tabele med prikazovanjem seznama zbirk podatkov"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Preštej tabele"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5169,11 +5172,11 @@ msgstr ""
"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabela Oblikovalnika"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5181,27 +5184,27 @@ msgstr ""
"Več informacij na [a@http://sf.net/support/tracker.php?aid=1849494]"
"sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Onemogoči uporabo INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "Katera razširitev PHP naj se uporablja; uporabite mysqli, če je podprt"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Razširitev PHP za uporabo"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Skrije zbirke podatkov, ki se ujemajo z običajnim izrazom (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Skrij zbirke podatkov"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5209,23 +5212,23 @@ msgstr ""
"Pustite prazno, če ne želite podpore zgodovine poizvedb SQL; predlagano: "
"[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabela zgodovine poizvedb SQL"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Ime gostitelja, kjer teče strežnik MySQL"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Ime gostitelja strežnika"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Odjavni URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5233,19 +5236,19 @@ msgstr ""
"Omeji število nastavitev tabel, ki so shranjene v zbirki podatkov; "
"najstarejši zapisi bodo samodejno odstranjeni"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Največje število shranjenih nastavitev tabel"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Poskusi se povezati brez gesla"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Poveži se brez gesla"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5259,30 +5262,30 @@ msgstr ""
"v vrstnem redu in na koncu uporabite [kbd]*[/kbd] za prikaz preostalih v "
"abecednem vrstnem redu."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Prikaži samo navedene zbirke podatkov"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Pustite prazno, če ne uporabljate overovitve config"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Geslo za overovitev config"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]"
"pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF-shema: tabele strani"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5292,20 +5295,20 @@ msgstr ""
"si [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] za vse informacije. "
"Pustite prazno, če ne želite podpore. Predlagano: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Ime zbirke podatkov"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"Vrata, na katera naj bo strežnik MySQL priključen; pustite prazno za privzeto"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Vrata strežnika"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5313,11 +5316,11 @@ msgstr ""
"Pustite prazno, če ne želite \"vztrajno\" nedavno uporabljenih tabel skozi "
"seje; predlagano: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Nedavno uporabljena tabela"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5325,19 +5328,19 @@ msgstr ""
"Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/"
"relation]relacijskih povezav[/a]; priporočeno: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relacijska tabela"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Ukaz SQL za pridobitev razpoložljivih zbirk podatkov"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "Ukaz SHOW DATABASES"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5345,43 +5348,43 @@ msgstr ""
"Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste "
"overovitev[/a] za primer"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Ime seje signon"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "URL signon"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"Vtičnica na katero je povezan strežnik MySQL; pustite prazno za privzeto"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Vtičnica strežnika"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Omogoči SSL za povezavo s strežnikom MySQL"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Uporabi SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF-shema: koordinate tabel"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5389,11 +5392,11 @@ msgstr ""
"Tabela za opisovanje prikaznih stolpcev; pustite prazno, če ne želite "
"podpore; predlagano: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Tabela prikaznih stolpcev"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5401,11 +5404,11 @@ msgstr ""
"Pustite prazno, če ne želite \"vztrajnih\" nastavitev uporabniškega vmesnika "
"tabel skozi seje; predlagano: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Tabela nastavitev uporabniškega vmesnika"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5413,11 +5416,11 @@ msgstr ""
"Ali naj se stavek DROP DATABASE IF EXISTS doda kot prva vrstica v dnevnik "
"pri ustvarjanju zbirke podatkov."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Dodaj DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5425,11 +5428,11 @@ msgstr ""
"Ali naj se stavek DROP TABLE IF EXISTS doda kot prva vrstica v dnevnik pri "
"ustvarjanju tabele."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Dodaj DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5437,21 +5440,21 @@ msgstr ""
"Ali naj se stavek DROP VIEW IF EXISTS doda kot prva vrstica v dnevnik pri "
"ustvarjanju pogleda."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Dodaj DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Določi seznam stavkov, ki jih samodejno ustvarjanje uporabi za nove "
"različice."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Izjave za sledenje"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5459,22 +5462,22 @@ msgstr ""
"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]"
"pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "Tabela sledenja poizvedb SQL"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
"Ali naj mehanizem sledenja ustvari različice tabel in pogledov samodejno."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Samodejno ustvari različice"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5482,15 +5485,15 @@ msgstr ""
"Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki "
"podatkov; predlagano: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Tabela za hranjenje uporabnikovih nastavitev"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Uporabnik za overovitev config"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5498,19 +5501,19 @@ msgstr ""
"Uporabniku prijazen opis tega strežnika. Pustite prazno, če se naj namesto "
"tega prikaže ime gostitelja."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Razširjeno ime tega strežnika"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Ali se naj uporabniku prikaže gumb "prikaži vse (vrstice)""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Dovoli prikaz vseh vrstic"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5520,46 +5523,46 @@ msgstr ""
"kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne omejuje "
"možnosti izvedbe enakega ukaza neposredno"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Pokaži obrazec za spremembo gesla"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Pokaži obrazec za ustvarjanje zbirke podatkov"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Prikaži ali skrij stolpec, ki prikazuje Časovni žig nastanka za vse tabele"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Prikaži Časovni žig nastanka"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Prikaži ali skrij stolpec, ki prikazuje Časovni žig zadnje spremembe za vse "
"tabele"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Časovni žig zadnje spremembe"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Prikaži ali skrij stolpec, ki prikazuje Časovni žig zadnjega preverjanja za "
"vse tabele"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Časovni žig zadnjega preverjanja"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5567,37 +5570,37 @@ msgstr ""
"Določa ali naj bo med brskanjem po tabelah prikazana možnost vrste smeri "
"prikaza"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Prikaži smer prikaza"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr "Določa ali naj bodo v načinu urejanja/vstavljanja prikazane vrste polj"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Pokaži vrste polj"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Prikaže polja funkcij v načinu urejanja/vstavljanja"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Prikaži polja funkcij"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Naj prikažem namig ali ne"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Prikaži namig"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5605,41 +5608,41 @@ msgstr ""
"Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Prikaži povezavo phpinfo()"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Prikaži podrobne informacije o strežniku MySQL"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Določi, ali se naj poizvedbe SQL, ki jih ustvari phpMyAdmin, prikažejo"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Pokaži poizvedbe SQL"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "Določa, ali naj polje s poizvedbo ostane na zaslonu po njeni izvedbi"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Ohrani polje poizvedbe"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Dovoli prikaz statistike zbirke podatkov in tabele (npr. poraba prostora)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Pokaži statistiko"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5647,11 +5650,11 @@ msgstr ""
"Če so zaslonski namigi omogočeni in ima zbirka podatkov določeno pripombo, "
"bo to zamenjalo pripombo in pravo ime"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Prikaži pripombo zbirke podatkov namesto njenega imena"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5663,30 +5666,30 @@ msgstr ""
"['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, sama "
"imena tabel pa ostanejo nespremenjena"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Prikaži pripombo tabele namesto njenega imena"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Prikaži pripombe tabel v zaslonskih namigih"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Označi uporabljene tabele in omogoči prikaz zbirk podatkov z zaklenjenimi "
"tabelami"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Preskoči zaklenjene tabele"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Potrebuje omogočen Preverjalnik SQL"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5696,7 +5699,7 @@ msgstr "Potrebuje omogočen Preverjalnik SQL"
msgid "Password"
msgstr "Geslo"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5704,11 +5707,11 @@ msgstr ""
"[strong]Opozorilo:[/strong] potrebuje nameščeno razširitev PHP SOAP ali PEAR "
"SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Omogoči Preverjalnik SQL"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5716,20 +5719,20 @@ msgstr ""
"Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous"
"[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Uporabniško ime"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Na glavni strani se prikaže opozorilo, če je zaznan Suhosin"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Opozorilo Suhosin"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5737,11 +5740,11 @@ msgstr ""
"Velikost besedilnega polja (stolpci) v načinu urejanja; vrednost bo povečana "
"za polja poizvedb SQL (*2) in za okno poizvedbe (*1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Stolpcev besedilnega polja"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5749,31 +5752,31 @@ msgstr ""
"Velikost besedilnega polja (vrstice) v načinu urejanja; vrednost bo povečana "
"za polja poizvedb SQL (*2) in za okno poizvedbe (*1,25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Vrstic besedilnega polja"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Naslov okna brskalnika, ko je izbrana zbirka podatkov"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Naslov okna brskalnika, ko je ni izbrano nič"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Privzeti naslov"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Naslov okna brskalnika, ko je izbran strežnik"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Naslov okna brskalnika, ko je izbrana tabela"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5784,27 +5787,27 @@ msgstr ""
"navaja, da naj phpMyAdmin zaupa glavi HTTP_X_FORWARDED_FOR (X-Forwarded-For) "
"prihajajoči iz proxyja 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Seznam zaupanja vrednih proxyjev za sprejetje/zavrnitev IP"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Mapa na strežniku, kamor lahko naložite datoteke za uvoz"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Mapa za nalaganje"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Dovoli iskanje po celotni zbirki podatkov"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Uporabi iskanje po zbirki podatkov"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5812,27 +5815,27 @@ msgstr ""
"Ko je onemogočeno, uporabniki ne morejo nastaviti katere koli od spodnjih "
"možnosti, ne glede na potrditveno polje na desni"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Omogoči zavihek Razvijalec v nastavitvah"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Preveri za najnovejšo različico"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Omogoča preverjanje najnovejše različice na glavni strani phpMyAdmin"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Preverjanje različice"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5840,7 +5843,7 @@ msgstr ""
"Omogoči stiskanje [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
"za posege uvoza in izvoza"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5861,82 +5864,82 @@ msgid "Signon authentication"
msgstr "Overitev preko signon"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV z uporabo LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Preglednica Open Document"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Hitro"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Po meri"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Možnosti za izvoz zbirke podatkov"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV-podatki za MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Besedilo Open Document"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Ne morem inicializirati knjižnice za povezavo Drizzle"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Ne morem se povezati s strežnikom Drizzle"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Ne morem se povezati s strežnikom MySQL"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Počisti uporabniško ime med uporabo overitvenega načina config"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Počisti ime seje signon med uporabo overitvenega načina signon"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Počisti URL signon med uporabo overitvenega načina signon"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Počisti krmilnega uporabnika phpMyAdmin med uporabo pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Počisti geslo krmilnega uporabnika phpMyAdmin med uporabo pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Napačen IP-naslov: %s"
@@ -5956,7 +5959,7 @@ msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP."
msgid "possible deep recursion attack"
msgstr "možen napad globoke rekurzije"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5964,15 +5967,15 @@ msgstr ""
"Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno "
"konfigurirana)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Strežnik se ne odziva."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Podrobnosti ..."
@@ -6038,7 +6041,7 @@ msgstr "Ustvari tabelo"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Ime"
@@ -6197,25 +6200,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Pretvorba kodiranja:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s z veje %2$s"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "ni veje"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Redakcija Git"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "potrdil(-a) %2$s dne %1$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "spremenil(-a) %2$s dne %1$s"
@@ -6937,18 +6940,17 @@ msgid "Display MIME types"
msgstr "Prikaži vrste MIME"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Gostitelj"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Čas nastanka"
@@ -7168,15 +7170,7 @@ msgstr "Za predstavitev GIS ni najdenih podatkov."
msgid "GLOBALS overwrite attempt"
msgstr "poskus prepisa GLOBALS"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Rezultat SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Ustvaril"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)."
@@ -7278,7 +7272,7 @@ msgstr "Neveljavno število stolpcev v vnosu CSV v vrstici %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Ime tabele"
@@ -7634,7 +7628,7 @@ msgstr "Ustvarjanje datotek PDF"
msgid "Displaying Column Comments"
msgstr "Prikazovanje pripomb stolpcev"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Pretvorba z brskalnikom"
@@ -7738,10 +7732,10 @@ msgid "Variable"
msgstr "Spremenljivka"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Vrednost"
@@ -7804,7 +7798,7 @@ msgstr "Ustvari geslo"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7840,8 +7834,8 @@ msgid "Edit event"
msgstr "Uredi dogodek"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Napaka v obdelovanju zahteve"
@@ -7891,7 +7885,7 @@ msgstr "Ob dokončanju ohrani"
msgid "Definer"
msgstr "Opredeljevalec"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Opredeljevalec mora biti oblike \"uporabniškoime@imegostitelja\""
@@ -7949,7 +7943,7 @@ msgstr ""
"morebitnim težavam."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Neveljavna vrsta rutine: \"%s\""
@@ -8020,17 +8014,17 @@ msgstr "Vrsta varnosti"
msgid "SQL data access"
msgstr "Dostop do podatkov SQL"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Navesti morate ime rutine"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Neveljavna smer \"%s\" podana za parameter."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8038,19 +8032,19 @@ msgstr ""
"Navesti morate dolžine/vrednosti za parametre rutine vrste ENUM, SET, "
"VARCHAR in VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Navesti morate ime in vrsto vsakega parametra rutine."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Navesti morate veljavno vrsto vrnjene vrednosti dogodka."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Navesti morate opredelitev rutine."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8059,22 +8053,22 @@ msgstr[1] "Zadnja izjava znotraj procedure je spremenila %d vrstici"
msgstr[2] "Zadnja izjava znotraj procedure je spremenila %d vrstice"
msgstr[3] "Zadnja izjava znotraj procedure je spremenila %d vrstic"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Rezultati izvedbe rutine %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Izvedi rutino"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Parametri rutine"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcija"
@@ -8249,7 +8243,7 @@ msgstr "Vsebina"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributi"
@@ -8348,12 +8342,12 @@ msgid "Toggle scratchboard"
msgstr "Preklopi odložišče (scratchboard)"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznani jezik: %1$s."
@@ -8399,7 +8393,7 @@ msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s"
msgid "Run SQL query/queries on database %s"
msgstr "Izvedi poizvedbo/poizvedbe SQL na zbirki podatkov %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Počisti"
@@ -8408,11 +8402,11 @@ msgstr "Počisti"
msgid "Columns"
msgstr "Stolpci"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Označi to poizvedbo SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
@@ -8511,12 +8505,12 @@ msgstr ""
"Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so "
"nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Sledenje %s je aktivirano."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8528,7 +8522,7 @@ msgstr ""
"ali enojni narekovaj (\"'\"), pred tem znakom vnesite poševnico (npr. '\\"
"\\xyz' ali 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8536,17 +8530,17 @@ msgstr ""
"Za privzete vrednosti vnesite samo vrednosti, brez poševnice nazaj ali "
"narekovaja, npr.: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Premakni stolpec"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8555,11 +8549,11 @@ msgstr ""
"Za seznam razpoložljivih možnosti pretvorbe in vrst MIME kliknite na %sopise "
"transformacij%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Možnosti pretvorbe"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8571,71 +8565,71 @@ msgstr ""
"enojni narekovaj (\"'\"), morate pred znak postaviti (še eno) poševnico "
"nazaj (npr. '\\\\xyz' ali 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "Podatki ENUM ali SET predolgi?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Pridobi več prostora za urejanje"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Brez"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Kot določeno:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primarni"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Polno besedilo"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "prvi"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "po %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Dodaj %s stolpec(-cev)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Dodati morate vsaj en stolpec."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Pogon skladiščenja"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Definicija PARTITION"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Iskanje po tabeli"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Uredi/Vstavi"
@@ -8801,11 +8795,11 @@ msgstr ""
"Vaše nastavitve bodo shranjene samo za trenutno sejo. Njihova trajna hramba "
"zahteva %shrambo konfiguracije phpMyAdmin%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Ne morem shraniti konfiguracije"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8817,8 +8811,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "V arhivu ZIP ni bilo najdenih datotek!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Napaka v arhivu ZIP:"
@@ -8996,16 +8990,22 @@ msgstr ""
msgid "No databases"
msgstr "Brez zbirk podatkov"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtriraj tabele po imenu"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtriraj tabele po imenu"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Ustvari tabelo"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Prosimo, izberite zbirko podatkov"
@@ -10162,7 +10162,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Vprašanj od zagona: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Izjave"
@@ -11413,12 +11413,12 @@ msgstr "Prezri napake"
msgid "Show form"
msgstr "Pokaži obrazec"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr "Na voljo ni ne vmesnik URL ne CURL. Preverjanje različice ni mogoče."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11426,15 +11426,15 @@ msgstr ""
"Branje različice je spodletelo. Morda niste povezani v internet ali pa se "
"posodobitveni strežnik ne odziva."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Od strežnika sem dobil neveljavno besedilo različice"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Nerazčlenljivo besedilo različice"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11443,11 +11443,11 @@ msgstr ""
"Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] :-)[br]"
"Najnovejša stabilna različica je %s, izdana %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Na voljo ni novejše stabilne različice"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11461,7 +11461,7 @@ msgstr ""
"temelječa na IP, ni zanesljiva, če vaš IP pripada ISP-ju, na katerega je "
"povezanih tisoče uporabnikov, vključno z vami."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11471,7 +11471,7 @@ msgstr ""
"s piškotki, je bil ključ za vas samodejno ustvarjen. Uporablja se pri "
"šifriranju piškotkov; ne rabite si ga zapomniti."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11480,7 +11480,7 @@ msgstr ""
"%sStiskanje in razširjanje Bzip2%s potrebuje funkcije (%s), ki na tem "
"sistemu niso na voljo."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11488,12 +11488,12 @@ msgstr ""
"Vrednost ponovno preverite, da se prepričate, da mapa ni dostopna ne svetu "
"in ne na voljo za branje ali pisanje drugim uporabnikom na vašem strežniku."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Ta %smožnost%s naj bo omogočena, če jo vaš spletni strežnik podpira."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11502,7 +11502,7 @@ msgstr ""
"%sStiskanje in razširjanje GZip%s zahteva funkcije (%s), ki na tem sistemu "
"niso na voljo."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11513,7 +11513,7 @@ msgstr ""
"naključno razvrednotenje seje, če je %ssession.gc_maxlifetime%s nižji od "
"njegove vrednosti (trenutno %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11523,7 +11523,7 @@ msgstr ""
"(30 minut). Vrednosti večje od 1800 lahko predstavljajo varnostno tveganje, "
"kot je pretvarjanje za drugo osebo."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11533,7 +11533,7 @@ msgstr ""
"ni 0, mora biti %sVeljavnost prijavnega piškotka%s določena na manjšo ali "
"enako vrednost."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11546,7 +11546,7 @@ msgstr ""
"koli, zaščita temelječa na IP ni zanesljiva, če vaš IP pripada ISP-ju, na "
"katerega je povezanih tisoče uporabnikov, vključno z vami."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11561,7 +11561,7 @@ msgstr ""
"neposredno dostopa do vaše plošče phpMyAdmin. Nastavite %svrsto overovitve%s "
"na [kbd]cookie[/kbd] ali [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11569,7 +11569,7 @@ msgid ""
msgstr ""
"%sStiskanje Zip%s zahteva funkcije (%s), ki na tem sistemu niso na voljo."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11577,23 +11577,23 @@ msgid ""
msgstr ""
"%sRazširjanje Zip%s zahteva funkcije (%s), ki na tem sistemu niso na voljo."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Uporabite povezave SSL, če jih vaš strežnik zbirke podatkov podpira."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Zaradi zmogljivostnih razlogov uporabljajte mysqli."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Dovoljujete povezavo s strežnikom brez gesla."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Ključ je prekratek, ima naj vsaj 8 znakov."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake."
@@ -11601,8 +11601,8 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake."
msgid "Wrong data"
msgstr "Napačni podatki"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Prebrskaj tuje vrednosti"
@@ -11632,21 +11632,29 @@ msgstr "Prikazovanje poizvedbe SQL"
msgid "Validated SQL"
msgstr "Preverjen SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Rezultat SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Ustvaril"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Težave z indeksi tabele `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Oznaka"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabela %1$s je bila uspešno spremenjena"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Stolpce sem uspešno premaknil."
@@ -11764,7 +11772,7 @@ msgstr "Vrednosti y"
msgid "Table %s already exists!"
msgstr "Tabela %s že obstaja!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabela %1$s je ustvarjena."
@@ -11963,43 +11971,43 @@ msgstr "Odstrani particioniranje"
msgid "Check referential integrity:"
msgstr "Preveri referenčno integriteto:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Prikazovanje tabel"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Poraba prostora"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Uporaba"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Učinkovito"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistika vrstic"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statično"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamično"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Dolžina vrstice"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Velikost vrstice"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Naslednji samodejni indeks"
@@ -12287,28 +12295,28 @@ msgstr "Sledi tem stavkom upravljanja s podatki:"
msgid "Create version"
msgstr "Ustvari različico"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Izvedi \"query by example\" (nadomestni znak: \"%\") za dva različna stolpca"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Dodatni iskalni pogoji"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Uporabite ta stolpec za označevanje vsake točke"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Največje število vrstic za izris"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Prebrskaj/Uredi točke"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Kako uporabljati"
diff --git a/po/sq.po b/po/sq.po
index 7fbe420b29..b154e596e5 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-07-21 14:51+0200\n"
-"Last-Translator: Marc Delisle \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:21+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: albanian \n"
"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Shfaqi të gjithë"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Numri i faqes:"
@@ -39,30 +39,30 @@ msgstr ""
"ndalojnë përditësimet nëpërmjet dritareve."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Kërko"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Kërko"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Zbato"
@@ -110,8 +110,8 @@ msgid "Database comment: "
msgstr "Komenti për databazën: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentet e tabelës"
@@ -122,16 +122,16 @@ msgstr "Komentet e tabelës"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Emrat e kollonave"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Emrat e kollonave"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Lloji"
@@ -156,9 +156,9 @@ msgstr "Lloji"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -168,7 +168,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Prezgjedhur"
@@ -177,18 +177,18 @@ msgstr "Prezgjedhur"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Lidhje me"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komente"
@@ -199,15 +199,15 @@ msgstr "Komente"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
-msgstr "Jo "
+msgstr "Jo"
#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360
#: libraries/Index.class.php:385 libraries/Index.class.php:704
@@ -221,23 +221,23 @@ msgstr "Jo "
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
-msgstr "Po "
+msgstr "Po"
#: db_export.php:26
msgid "View dump (schema) of database"
msgstr "Shfaq dump (skema) e databazës"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Nuk gjenden tabela në databazë."
@@ -327,8 +327,8 @@ msgstr "Kalo tek databaza e kopjuar"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -353,8 +353,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Skema relacionale"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -364,45 +364,44 @@ msgstr "Skema relacionale"
msgid "Table"
msgstr "Tabela"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "rreshta"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Madhësia"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "në përdorim"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Krijimi"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Ndryshimi i fundit"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Kontrolli i fundit"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -497,13 +496,13 @@ msgstr "Përdor tabelat"
msgid "SQL query on database %s :"
msgstr "Kërkesë SQL tek databaza %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Dërgo Query"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Ndalohet hyrja"
@@ -538,8 +537,8 @@ msgstr[0] "%s korrispondon(jnë) tek tabela %s "
msgstr[1] "%s korrispondon(jnë) tek tabela %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Shfleto"
@@ -625,11 +624,11 @@ msgstr "Paraqitja %s u eleminua"
msgid "Table %s has been dropped"
msgstr "Tabela %s u eleminua"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Gjurmimi është aktiv."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Gjurmimi nuk është aktiv."
@@ -641,7 +640,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Paraqitje"
@@ -687,7 +686,7 @@ msgstr "Zgjidh të mbingarkuarit"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -696,17 +695,18 @@ msgid "Export"
msgstr "Eksporto"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Shfaq për printim"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Zbraz"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -754,15 +754,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Databazat"
@@ -781,7 +780,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Gjendja"
@@ -985,13 +984,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Libërshënuesi u fshi."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "File nuk mund të lexohet"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1014,7 +1013,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1036,8 +1035,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1165,9 +1164,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Ndrysho"
@@ -1194,7 +1193,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Gjithsej"
@@ -1205,12 +1204,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1297,13 +1296,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1367,27 +1366,27 @@ msgid "Connections"
msgstr "Lidhje"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1433,9 +1432,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Asnjë lloj"
@@ -1621,7 +1620,7 @@ msgstr "Shpjego SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Koha"
@@ -1986,7 +1985,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2002,7 +2001,7 @@ msgstr "query SQL"
msgid "Show search criteria"
msgstr "query SQL"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2188,7 +2187,7 @@ msgstr "Ndrysho fjalëkalimin"
msgid "More"
msgstr "Hën"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2296,27 +2295,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Shk"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Pri"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2324,37 +2323,37 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Qer"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Kor"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Gsh"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sht"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Tet"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nën"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dhj"
@@ -2403,32 +2402,32 @@ msgid "Sun"
msgstr "Djl"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Hën"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Mër"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Enj"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pre"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sht"
@@ -2587,11 +2586,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2599,47 +2598,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2653,7 +2652,7 @@ msgstr "Asnjë tregues i përcaktuar!"
msgid "Indexes"
msgstr "Tregues"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2690,46 +2689,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Databazat"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serveri"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Shto"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operacione"
@@ -2811,20 +2810,20 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Gabim"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2832,7 +2831,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Nuk ka rreshta të zgjedhur"
msgstr[1] "Nuk ka rreshta të zgjedhur"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2879,51 +2878,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Kërko në databazë"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "Kërko në databazë"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabela %s u riemërtua %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2931,16 +2930,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "merre"
@@ -2992,7 +2991,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3033,12 +3032,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Versioni i MySQL"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3049,7 +3048,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Versioni i MySQL"
@@ -3066,7 +3065,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3079,7 +3078,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3177,77 +3176,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Krijo një tregues të ri"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Rreshta që mbarojnë me"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Gjithsej"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3319,20 +3318,20 @@ msgstr "Zgjedhja e serverit"
msgid "Cookies must be enabled past this point."
msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "E pamundur kryerja e login tek server-i MySQL"
@@ -3376,18 +3375,18 @@ msgstr "Tabela"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Të dhëna"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Mbi limit"
@@ -3499,8 +3498,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "query SQL"
@@ -3510,81 +3509,81 @@ msgstr "query SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Mesazh nga MySQL: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Shpjego SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Mos shpjego SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "pa kod PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Krijo kodin PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Rifresko"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Mos vleftëso SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Vleftëso SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Djl"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y at %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3592,7 +3591,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Fillim"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3601,7 +3600,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Paraardhësi"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3610,7 +3609,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Në vazhdim"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3618,45 +3617,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Fund"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Kalo tek databaza "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "directory e upload të server-it web"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Printo"
@@ -3749,72 +3748,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "E ndryshueshme"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "Lidhja nuk u gjet"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3833,7 +3832,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4124,7 +4123,7 @@ msgid "Character set of the file"
msgstr "Familja gërmave të file:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Formati"
@@ -4238,7 +4237,7 @@ msgstr "Kyçi i etiketës"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "Lloji MIME"
@@ -4368,8 +4367,8 @@ msgstr "Opcione të eksportimit të databazës"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "të dhëna CSV"
@@ -4805,110 +4804,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analizo tabelën"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4916,452 +4919,452 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Limitet e rezervave"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Transformo tabelën e renditur sipas"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Dritarja e Query"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Dritarja e Query"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Dritarja e Query"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Riemërto tabelën në"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Lidhje"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Çfarëdo host"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Asnjë tabelë"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Defragmento tabelën"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Asnjë databazë"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "Zgjedhja e serverit"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5370,373 +5373,373 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "Databazat"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Zgjedhja e serverit"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analizo tabelën"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Riparo tabelën"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Zgjedhja e serverit"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Vizualizimi i komenteve të kollonave"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmento tabelën"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Instruksione"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "Versioni i MySQL"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Trego info mbi PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Opcione të eksportimit të databazës"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "Shfaq tabelat"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Shfaq rrjetën"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Shfaq të gjitha kërkesat"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "query SQL"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Statistikat e rreshtave"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5744,28 +5747,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5775,81 +5778,81 @@ msgstr ""
msgid "Password"
msgstr "Fjalëkalimi"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Emri i përdoruesit:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Shto/Fshi kollonat e fushës"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "Prezgjedhur"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5857,59 +5860,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5930,82 +5933,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opcione të eksportimit të databazës"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV për të dhëna MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6025,23 +6028,23 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveri nuk përgjigjet"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6106,7 +6109,7 @@ msgstr "Krijo një faqe të re"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Emri"
@@ -6293,25 +6296,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Versioni i MySQL"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Versioni i MySQL"
@@ -6452,7 +6455,7 @@ msgstr "Hën"
#: libraries/display_tbl.lib.php:498
msgid "horizontal"
-msgstr "horizontal "
+msgstr "horizontal"
#: libraries/display_tbl.lib.php:499
msgid "horizontal (rotated headers)"
@@ -6460,7 +6463,7 @@ msgstr "horizontal (headers të rrotulluar)"
#: libraries/display_tbl.lib.php:500
msgid "vertical"
-msgstr "vertikal "
+msgstr "vertikal"
#: libraries/display_tbl.lib.php:511
#, php-format
@@ -6550,7 +6553,7 @@ msgstr "tek query"
#: libraries/display_tbl.lib.php:2838
msgid "Showing rows"
-msgstr "Shfaqja e regjistrimeve "
+msgstr "Shfaqja e regjistrimeve"
#: libraries/display_tbl.lib.php:2848
msgid "total"
@@ -7028,18 +7031,17 @@ msgid "Display MIME types"
msgstr "Lloje MIME në dispozicion"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Gjeneruar më"
@@ -7254,15 +7256,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "Rezultati SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Gjeneruar nga"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)."
@@ -7357,7 +7351,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7719,7 +7713,7 @@ msgstr "Krijimi i PDF-ve"
msgid "Displaying Column Comments"
msgstr "Vizualizimi i komenteve të kollonave"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Transformimi i Shfletuesit"
@@ -7818,10 +7812,10 @@ msgid "Variable"
msgstr "E ndryshueshme"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Vlerë"
@@ -7881,7 +7875,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7919,8 +7913,8 @@ msgid "Edit event"
msgstr "Dërguar"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7982,7 +7976,7 @@ msgstr "Të shtuarat komplet"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8038,7 +8032,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -8122,57 +8116,57 @@ msgstr "Lloji i query"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funksioni"
@@ -8371,7 +8365,7 @@ msgstr "Tabela e përmbajtjes"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Pronësi"
@@ -8480,12 +8474,12 @@ msgid "Toggle scratchboard"
msgstr "(ç')aktivo scratchboard"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8535,7 +8529,7 @@ msgstr "Zbato query SQL tek databaza %s"
msgid "Run SQL query/queries on database %s"
msgstr "Zbato query SQL tek databaza %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8547,11 +8541,11 @@ msgstr "Kalendari"
msgid "Columns"
msgstr "Emrat e kollonave"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Shtoja të preferuarve këtë query SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
@@ -8653,13 +8647,13 @@ msgstr ""
"Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e "
"prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Gjurmimi është aktiv."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8677,7 +8671,7 @@ msgstr ""
"backslashes (\"\\\") apo single quote (\"'\") para këtyre vlerave, backslash-"
"ojini (për shembull '\\\\xyz' o 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8685,19 +8679,19 @@ msgstr ""
"Për vlerat e prezgjedhura, ju lutem shtoni një vlerë të vetme, pa backslash "
"escaping apo thonjëza, duke përdorur këtë format: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Treguesi"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Shto/Fshi kollonat e fushës"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8706,11 +8700,11 @@ msgstr ""
"Për listën e opcioneve të transformimeve në dispozicion dhe transformimet "
"relativë të llojeve-MIME, kliko tek %spërshkrimet e transformimeve%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opcione të transformimeve"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8722,78 +8716,78 @@ msgstr ""
"(\"\\\") apo një apostrofë (\"'\") midis këtyre vlerave, duhet ti backslash-"
"oni (për shembull '\\\\xyz' ose 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Asnjë lloj"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primar"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Teksti komplet"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Mbas %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "Shto një fushë të re"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Zgjidh të paktën një kollonë për të shfaqur"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Kërko"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8983,11 +8977,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8997,8 +8991,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -9176,19 +9170,25 @@ msgstr ""
msgid "No databases"
msgstr "Asnjë databazë"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Transformo tabelën e renditur sipas"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Transformo tabelën e renditur sipas"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Krijo një faqe të re"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Të lutem, zgjidh një databazë"
@@ -10389,7 +10389,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Instruksione"
@@ -11504,37 +11504,37 @@ msgstr ""
msgid "Show form"
msgstr "Shfaq ngjyrën"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11543,39 +11543,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11583,21 +11583,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11606,7 +11606,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11616,37 +11616,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11656,8 +11656,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Asnjë databazë"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Shfleto opcionet e huaja"
@@ -11691,21 +11691,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Vleftëso SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "Rezultati SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Gjeneruar nga"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etiketë"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11838,7 +11846,7 @@ msgstr "Vlerë"
msgid "Table %s already exists!"
msgstr "Përdoruesi %s ekziston!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Tabela %s u eleminua"
@@ -12057,45 +12065,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Kontrollo integritetin e informacioneve:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Shfaq tabelat"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Hapësira e përdorur"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Përdorimi"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektiv"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistikat e rreshtave"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamik"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Gjatësia e rreshtit"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Madhësia e rreshtit"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12403,30 +12411,30 @@ msgstr ""
msgid "Create version"
msgstr "Versioni i MySQL"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "query SQL"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index bcecb74f6f..a22562423b 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-27 16:56+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:20+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: serbian_cyrillic \n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 0.8\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Прикажи све"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Број странице:"
@@ -40,30 +40,30 @@ msgstr ""
"прозорима због сигурносних подешавања"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Претраживање"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Претраживање"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Крени"
@@ -108,11 +108,11 @@ msgstr "База %1$s је креирана."
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "Коментар базе:"
+msgstr "Коментар базе: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Коментари табеле"
@@ -123,14 +123,14 @@ msgstr "Коментари табеле"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Колона"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "Колона"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -155,9 +155,9 @@ msgstr "Тип"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +167,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Подразумевано"
@@ -176,18 +176,18 @@ msgstr "Подразумевано"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Везе ка"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Коментари"
@@ -198,11 +198,11 @@ msgstr "Коментари"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "Не"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "Да"
msgid "View dump (schema) of database"
msgstr "Прикажи садржај (схему) базе"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Табеле нису пронађене у бази."
@@ -323,8 +323,8 @@ msgstr "Пребаци се на копирану базу"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -347,8 +347,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Уреди или извези релациону схему"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -358,45 +358,44 @@ msgstr "Уреди или извези релациону схему"
msgid "Table"
msgstr "Табела"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Редова"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Величина"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "се користи"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Направљено"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Последња измена"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Последња провера"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -492,13 +491,13 @@ msgstr "Користи табеле"
msgid "SQL query on database %s :"
msgstr "SQL упит на бази %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Изврши SQL упит"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Приступ одбијен"
@@ -534,8 +533,8 @@ msgstr[1] "%s погодака унутар табеле %s "
msgstr[2] "%s погодака унутар табеле %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Преглед"
@@ -622,11 +621,11 @@ msgstr "Поглед %s је одбачен"
msgid "Table %s has been dropped"
msgstr "Табела %s је одбачена"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -638,7 +637,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Поглед"
@@ -683,7 +682,7 @@ msgstr "Провери табеле које имају прекорачења"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -692,17 +691,18 @@ msgid "Export"
msgstr "Извоз"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "За штампу"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Испразни"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -751,15 +751,14 @@ msgid "Tracked tables"
msgstr "Провери табелу"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "База података"
@@ -779,7 +778,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Статус"
@@ -989,13 +988,13 @@ msgstr "Приказивање маркера"
msgid "The bookmark has been deleted."
msgstr "Обележивач је управо обрисан."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Датотеку није могуће прочитати"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1023,7 +1022,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Направљен маркер %s"
@@ -1050,8 +1049,8 @@ msgstr ""
"да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не "
"повећате временска ограничења у PHP-у"
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1180,9 +1179,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Промени"
@@ -1209,7 +1208,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Укупно"
@@ -1220,12 +1219,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1317,13 +1316,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "КБ"
@@ -1391,27 +1390,27 @@ msgid "Connections"
msgstr "Конекције"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "бајтова"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "ЕБ"
@@ -1459,9 +1458,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "нема"
@@ -1649,7 +1648,7 @@ msgstr "Објасни SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Време"
@@ -2017,7 +2016,7 @@ msgstr "%d није исправан број реда."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2033,7 +2032,7 @@ msgstr "SQL упит"
msgid "Show search criteria"
msgstr "SQL упит"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2220,7 +2219,7 @@ msgstr "Промени лозинку"
msgid "More"
msgstr "Пон"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2328,27 +2327,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2356,37 +2355,37 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "дец"
@@ -2435,32 +2434,32 @@ msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Уто"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Суб"
@@ -2620,11 +2619,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Величина фонта"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2632,13 +2631,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Послата датотека превазилази вредност директиве upload_max_filesize у php."
"ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2646,37 +2645,37 @@ msgstr ""
"Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је "
"наведена у HTML форми."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Послата датотека је само делимично примљена."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Недостаје привремени директоријум."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Неуспело уписивање датотеке на диск."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Пријем датотеке заустављен због екстензије."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Непозната грешка при слању датотеке."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2690,7 +2689,7 @@ msgstr "Кључ није дефинисан!"
msgid "Indexes"
msgstr "Кључеви"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2727,46 +2726,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Базе"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Нови запис"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Операције"
@@ -2848,20 +2847,20 @@ msgstr ""
msgid "Engines"
msgstr "Складиштења"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Грешка"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2869,7 +2868,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Нема одабраних редова"
msgstr[1] "Нема одабраних редова"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2919,54 +2918,54 @@ msgstr "%s је онемогућен на овом MySQL серверу."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Овај MySQL сервер не подржава %s погон складиштења."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Прикажи статус подређених сервера"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Претраживање базе"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Није пронађена тема %s!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Неисправна база података"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Неисправан назив табеле"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Грешка при преименовању табеле %1$s у %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Табели %s промењено име у %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2974,16 +2973,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Нема исправне путање до слика за тему %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Преглед не постоји."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "преузми"
@@ -3035,7 +3034,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3076,12 +3075,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Направи релацију"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3092,7 +3091,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3110,7 +3109,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3123,7 +3122,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3222,77 +3221,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Направи нови кључ"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Линије се завршавају са"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Укупно"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3366,20 +3365,20 @@ msgstr "Избор сервера"
msgid "Cookies must be enabled past this point."
msgstr "Колачићи (Cookies) морају у овом случају бити активни."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Није било активности %s или више секунди, молимо пријавите се поново"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Не могу да се пријавим на MySQL сервер"
@@ -3423,18 +3422,18 @@ msgstr "Табеле"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Подаци"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Прекорачење"
@@ -3550,8 +3549,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL упит"
@@ -3561,85 +3560,85 @@ msgstr "SQL упит"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL рече: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Објасни SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Прескочи објашњавање SQL-a"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "без PHP кода"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Направи PHP код"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Освежи"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Прескочи проверу SQL-a"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Провери SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Складиштења"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Профилисање"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нед"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. у %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дана, %s сати, %s минута и %s секунди"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Рутине"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3647,7 +3646,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Почетак"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3656,7 +3655,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Претходна"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3665,7 +3664,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Следећи"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3673,45 +3672,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Крај"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Пређи на базу "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Ова функционалност %s је погођена познатом грешком, видите %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "директоријум за слање веб сервера "
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Директоријум који сте изабрали за слање није доступан"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Штампај"
@@ -3804,71 +3803,71 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Променљива"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
msgid "SOAP extension not found"
msgstr "верзија PHP-a"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3887,7 +3886,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4182,7 +4181,7 @@ msgid "Character set of the file"
msgstr "Карактер сет датотеке:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Формат"
@@ -4296,7 +4295,7 @@ msgstr "Ознака кључа"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-типови"
@@ -4426,8 +4425,8 @@ msgstr "Опције за извоз базе"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4881,111 +4880,117 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Број отворених табела."
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "The number of tables that are open."
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Број отворених табела."
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
#, fuzzy
msgid "Database tree separator"
msgstr "Шаблон имена датотеке"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
#, fuzzy
msgid "Use light version"
msgstr "Верзија MySQL клијента"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
msgid "Recently used tables"
msgstr "Провери табелу"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4993,457 +4998,457 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
#, fuzzy
msgid "Maximum databases"
msgstr "База не постоји"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Ограничења ресурса"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Промени редослед у табели"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Прозор за упите"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Прозор за упите"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Прозор за упите"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Промени име табеле у "
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Нити поправке"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
#, fuzzy
msgid "Save directory"
msgstr "Основни директоријум података"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Конекције"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Било који домаћин"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Нема табела"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Дефрагментирај табелу"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
#, fuzzy
msgid "PHP extension to use"
msgstr "верзија PHP-a"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "База не постоји"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "назив сервера"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5452,376 +5457,376 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "назив базе"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "ИД сервера"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Анализирај табелу"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Поправи табелу"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Избор сервера"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Приказујем коментаре колоне"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Дефрагментирај табелу"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Име"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Режим аутоматског опоравка"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Прикажи информације о PHP-у"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Прикажи статус подређених сервера"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Опције за извоз базе"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Прикажи отворене табеле"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Прикажи мрежу"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Прикажи комплетне упите"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL упит"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Статистике реда"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5829,29 +5834,29 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
#, fuzzy
msgid "Skip locked tables"
msgstr "Прикажи отворене табеле"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5861,80 +5866,80 @@ msgstr ""
msgid "Password"
msgstr "Лозинка"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Корисничко име:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Додај/обриши колону"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
msgid "Default title"
msgstr "Преименуј базу у"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5942,60 +5947,60 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
#, fuzzy
msgid "Upload directory"
msgstr "Основни директоријум података"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -6016,82 +6021,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV користећи LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Опције за извоз базе"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV за MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6111,7 +6116,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6119,17 +6124,17 @@ msgid ""
"configured)."
msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервер не одговара"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6197,7 +6202,7 @@ msgstr "Направи табелу"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Име"
@@ -6394,25 +6399,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Верзија MySQL клијента"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Направи релацију"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Направи релацију"
@@ -7164,18 +7169,17 @@ msgid "Display MIME types"
msgstr "Доступни MIME-типови"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Домаћин"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Време креирања"
@@ -7388,15 +7392,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL резултат"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Генерисао"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL је вратио празан резултат (нула редова)."
@@ -7492,7 +7488,7 @@ msgstr "Неисправан број поља у CSV улазу на линиј
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Назив табеле"
@@ -7858,7 +7854,7 @@ msgstr "Прављење PDF-ova"
msgid "Displaying Column Comments"
msgstr "Приказујем коментаре колоне"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Транформације читача"
@@ -7959,10 +7955,10 @@ msgid "Variable"
msgstr "Променљива"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Вредност"
@@ -8021,7 +8017,7 @@ msgstr "Направи лозинку"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -8060,8 +8056,8 @@ msgid "Edit event"
msgstr "Догађаји"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8121,7 +8117,7 @@ msgstr "Комплетан INSERT (са именима поља)"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8177,7 +8173,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8266,35 +8262,35 @@ msgstr "Врста упита"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8302,25 +8298,25 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Дозвољава извршавање сачуваних рутина."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Рутине"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Функција"
@@ -8527,7 +8523,7 @@ msgstr "Садржај"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Атрибути"
@@ -8636,12 +8632,12 @@ msgid "Toggle scratchboard"
msgstr "Укључи/искључи радну таблу"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Непознат језик: %1$s."
@@ -8691,7 +8687,7 @@ msgstr "Изврши SQL упит(е) на серверу %s"
msgid "Run SQL query/queries on database %s"
msgstr "Изврши SQL упит(е) на бази %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8703,11 +8699,11 @@ msgstr "Календар"
msgid "Columns"
msgstr "Имена колона"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Запамти SQL-упит"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
@@ -8733,7 +8729,7 @@ msgstr "Види само"
#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
msgid "web server upload directory"
-msgstr "директоријум за слање веб сервера "
+msgstr "директоријум за слање веб сервера"
#: libraries/sqlparser.lib.php:136
msgid ""
@@ -8806,12 +8802,12 @@ msgstr ""
"SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране "
"неопходне PHP екстензије описане у %sдокументацији%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8829,7 +8825,7 @@ msgstr ""
"користите их у \"избегнутом\" (escaped) облику (на пример '\\\\xyz' или 'a"
"\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8837,19 +8833,19 @@ msgstr ""
"За подразумевану вредност, унесите само једну вредност, без косих црта или "
"наводника у овом облику: а"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Кључ"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Додај/обриши колону"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8858,11 +8854,11 @@ msgstr ""
"За листу доступних опција трансформације и њихове трансформације MIME-"
"типова, кликните на %sописе трансформација%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Опције трансформације"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8874,79 +8870,79 @@ msgstr ""
"апостроф (\"'\") у те вредности, ставите обрнуту косу црту испред њих (на "
"пример '\\\\xyz' или 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "нема"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Примарни"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Текст кључ"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "После %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Додај %s поља"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Морате додати барем једно поље."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Погон складиштења"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Оператор"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Претраживање"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9149,13 +9145,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9165,8 +9161,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "У ZIP архиви нема датотека!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Грешка у ZIP архиви:"
@@ -9349,20 +9345,26 @@ msgstr ""
msgid "No databases"
msgstr "База не постоји"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "назив табеле"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "назив табеле"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Направи табелу"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Изаберите базу"
@@ -9979,7 +9981,7 @@ msgstr "Привилегије везане за табеле"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Напомена: MySQL имена привилегија морају да буду на енглеском "
+msgstr "Напомена: MySQL имена привилегија морају да буду на енглеском"
#: server_privileges.php:711
msgid "Administration"
@@ -10552,7 +10554,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Име"
@@ -11785,37 +11787,37 @@ msgstr ""
msgid "Show form"
msgstr "Прикажи боју"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11824,39 +11826,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11864,21 +11866,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11887,7 +11889,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11897,37 +11899,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11937,8 +11939,8 @@ msgstr ""
msgid "Wrong data"
msgstr "База не постоји"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Прегледај стране вредности"
@@ -11972,21 +11974,29 @@ msgstr "Приказ као SQL упит"
msgid "Validated SQL"
msgstr "Провери SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL резултат"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Генерисао"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирању табеле `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Назив"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Изабрани корисници су успешно обрисани."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12125,7 +12135,7 @@ msgstr "Вредност"
msgid "Table %s already exists!"
msgstr "Табела %s већ постоји!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Табела %s је одбачена"
@@ -12260,7 +12270,7 @@ msgstr "Опције табеле"
#: tbl_operations.php:362
msgid "Rename table to"
-msgstr "Промени име табеле у "
+msgstr "Промени име табеле у"
#: tbl_operations.php:544
msgid "Copy table to (database. table):"
@@ -12344,45 +12354,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Провери референцијални интегритет:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Прикажи табеле"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Заузеће"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Заузеће"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Ефективне"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Статистике реда"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "динамички"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Дужина реда"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Величина реда"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12693,30 +12703,30 @@ msgstr ""
msgid "Create version"
msgstr "Направи релацију"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Направи \"упит по примеру\" (џокер: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL упит"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
msgid "How to use"
msgstr "верзија PHP-a"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 4391b4693a..f94a124370 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-12-02 14:49+0200\n"
-"Last-Translator: Sasa Kostic \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:19+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: serbian_latin \n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Pootle 2.0.5\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Prikaži sve"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Broj strane:"
@@ -40,30 +40,30 @@ msgstr ""
"prozorima zbog sigurnosnih podešavanja"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Pretraživanje"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Pretraživanje"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kreni"
@@ -108,11 +108,11 @@ msgstr "Baza %1$s je kreirana."
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "Komentar baze:"
+msgstr "Komentar baze: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Komentari tabele"
@@ -123,14 +123,14 @@ msgstr "Komentari tabele"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Kolona"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "Kolona"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tip"
@@ -155,9 +155,9 @@ msgstr "Tip"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +167,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Podrazumevano"
@@ -176,18 +176,18 @@ msgstr "Podrazumevano"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Veze ka"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Komentari"
@@ -198,11 +198,11 @@ msgstr "Komentari"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "Ne"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "Da"
msgid "View dump (schema) of database"
msgstr "Prikaži sadržaj (shemu) baze"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Tabele nisu pronađene u bazi."
@@ -323,8 +323,8 @@ msgstr "Prebaci se na kopiranu bazu"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -347,8 +347,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Uredi ili izvezi relacionu shemu"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -358,45 +358,44 @@ msgstr "Uredi ili izvezi relacionu shemu"
msgid "Table"
msgstr "Tabela"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Redova"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Veličina"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "se koristi"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Napravljeno"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Poslednja izmena"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Poslednja provera"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -487,13 +486,13 @@ msgstr "Koristi tabele"
msgid "SQL query on database %s :"
msgstr "SQL upit na bazi %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Izvrši SQL upit"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Pristup odbijen"
@@ -529,8 +528,8 @@ msgstr[1] "%s pogodaka unutar tabele %s "
msgstr[2] "%s pogodaka unutar tabele %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Pregled"
@@ -614,11 +613,11 @@ msgstr "Pogled %s je odbačen"
msgid "Table %s has been dropped"
msgstr "Tabela %s je odbačena"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Praćenje je aktivno."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Praćenje nije aktivno."
@@ -630,7 +629,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Pogled"
@@ -675,7 +674,7 @@ msgstr "Proveri tabele koje imaju prekoračenja"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -684,17 +683,18 @@ msgid "Export"
msgstr "Izvoz"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Za štampu"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Isprazni"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -743,15 +743,14 @@ msgid "Tracked tables"
msgstr "Proveri tabelu"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Baza podataka"
@@ -771,7 +770,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -981,13 +980,13 @@ msgstr "Prikazivanje markera"
msgid "The bookmark has been deleted."
msgstr "Obeleživač je upravo obrisan."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Datoteku nije moguće pročitati"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1015,7 +1014,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Napravljen marker %s"
@@ -1042,8 +1041,8 @@ msgstr ""
"znači da phpMyAdmin neće biti u mogućnosti da završi ovaj uvoz osim ako ne "
"povećate vremenska ograničenja u PHP-u"
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1172,9 +1171,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Promeni"
@@ -1201,7 +1200,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ukupno"
@@ -1212,12 +1211,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1309,13 +1308,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1383,27 +1382,27 @@ msgid "Connections"
msgstr "Konekcije"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "bajtova"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1452,9 +1451,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "nema"
@@ -1642,7 +1641,7 @@ msgstr "Objasni SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Vreme"
@@ -2010,7 +2009,7 @@ msgstr "%d nije ispravan broj reda."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2026,7 +2025,7 @@ msgstr "SQL upit"
msgid "Show search criteria"
msgstr "SQL upit"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2213,7 +2212,7 @@ msgstr "Promeni lozinku"
msgid "More"
msgstr "Pon"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2321,27 +2320,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2349,37 +2348,37 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "dec"
@@ -2428,32 +2427,32 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Sre"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Sub"
@@ -2613,11 +2612,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Veličina fonta"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2625,13 +2624,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php."
"ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2639,37 +2638,37 @@ msgstr ""
"Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je "
"navedena u HTML formi."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Poslata datoteka je samo delimično primljena."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Nedostaje privremeni direktorijum."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Neuspelo upisivanje datoteke na disk."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Prijem datoteke zaustavljen zbog ekstenzije."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Nepoznata greška pri slanju datoteke."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Greška u premeštanju primljene datoteke, pogledajte FAQ 1.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2683,7 +2682,7 @@ msgstr "Ključ nije definisan!"
msgid "Indexes"
msgstr "Ključevi"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2720,46 +2719,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Baze"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Novi zapis"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operacije"
@@ -2841,20 +2840,20 @@ msgstr ""
msgid "Engines"
msgstr "Skladištenja"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Greška"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2862,7 +2861,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Nema odabranih redova"
msgstr[1] "Nema odabranih redova"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2912,54 +2911,54 @@ msgstr "%s je onemogućen na ovom MySQL serveru."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Prikaži status podređenih servera"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Pretraživanje baze"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Nije pronađena tema %s!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Neispravna baza podataka"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Neispravan naziv tabele"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Greška pri preimenovanju tabele %1$s u %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabeli %s promenjeno ime u %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2967,16 +2966,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nema ispravne putanje do slika za temu %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Pregled ne postoji."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "preuzmi"
@@ -3028,7 +3027,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3069,12 +3068,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Napravi relaciju"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3085,7 +3084,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3103,7 +3102,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3116,7 +3115,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3215,77 +3214,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Napravi novi ključ"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Linije se završavaju sa"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Ukupno"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3359,20 +3358,20 @@ msgstr "Izbor servera"
msgid "Cookies must be enabled past this point."
msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Nije bilo aktivnosti %s ili više sekundi, molimo prijavite se ponovo"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Ne mogu da se prijavim na MySQL server"
@@ -3416,18 +3415,18 @@ msgstr "Tabele"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Podaci"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Prekoračenje"
@@ -3543,8 +3542,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL upit"
@@ -3554,85 +3553,85 @@ msgstr "SQL upit"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL reče: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Objasni SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Preskoči objašnjavanje SQL-a"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "bez PHP koda"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Napravi PHP kod"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Osveži"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Preskoči proveru SQL-a"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Proveri SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Skladištenja"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilisanje"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dana, %s sati, %s minuta i %s sekundi"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutine"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3640,7 +3639,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Početak"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3649,7 +3648,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodna"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3658,7 +3657,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Sledeći"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3666,45 +3665,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Kraj"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Pređi na bazu "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "direktorijum za slanje veb servera "
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktorijum koji ste izabrali za slanje nije dostupan"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Štampaj"
@@ -3797,71 +3796,71 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Promenljiva"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
msgid "SOAP extension not found"
msgstr "verzija PHP-a"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3880,7 +3879,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4176,7 +4175,7 @@ msgid "Character set of the file"
msgstr "Karakter set datoteke:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4290,7 +4289,7 @@ msgstr "Oznaka ključa"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-tipovi"
@@ -4420,8 +4419,8 @@ msgstr "Opcije za izvoz baze"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4873,111 +4872,117 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Broj otvorenih tabela."
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "The number of tables that are open."
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Broj otvorenih tabela."
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
#, fuzzy
msgid "Database tree separator"
msgstr "Šablon imena datoteke"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
#, fuzzy
msgid "Use light version"
msgstr "Verzija MySQL klijenta"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
msgid "Recently used tables"
msgstr "Proveri tabelu"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4985,457 +4990,457 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
#, fuzzy
msgid "Maximum databases"
msgstr "Baza ne postoji"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Ograničenja resursa"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Promeni redosled u tabeli"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Prozor za upite"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Promeni ime tabele u "
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Niti popravke"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
#, fuzzy
msgid "Save directory"
msgstr "Osnovni direktorijum podataka"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Konekcije"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bilo koji domaćin"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Nema tabela"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Defragmentiraj tabelu"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
#, fuzzy
msgid "PHP extension to use"
msgstr "verzija PHP-a"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Baza ne postoji"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "naziv servera"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5444,376 +5449,376 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "naziv baze"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "ID servera"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Analiziraj tabelu"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Popravi tabelu"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Izbor servera"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Prikazujem komentare kolone"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Defragmentiraj tabelu"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Ime"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Režim automatskog oporavka"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Prikaži informacije o PHP-u"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
msgid "Show Last check timestamp"
msgstr "Prikaži status podređenih servera"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Opcije za izvoz baze"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Prikaži otvorene tabele"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Prikaži mrežu"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Prikaži kompletne upite"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL upit"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Statistike reda"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5821,29 +5826,29 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
#, fuzzy
msgid "Skip locked tables"
msgstr "Prikaži otvorene tabele"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5853,80 +5858,80 @@ msgstr ""
msgid "Password"
msgstr "Lozinka"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Korisničko ime:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Dodaj/obriši kolonu"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
msgid "Default title"
msgstr "Preimenuj bazu u"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5934,60 +5939,60 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
#, fuzzy
msgid "Upload directory"
msgstr "Osnovni direktorijum podataka"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -6008,82 +6013,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV koristeći LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document Spreadsheet"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Opcije za izvoz baze"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV za MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6103,7 +6108,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6111,17 +6116,17 @@ msgid ""
"configured)."
msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server ne odgovara"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6189,7 +6194,7 @@ msgstr "Napravi tabelu"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Ime"
@@ -6386,25 +6391,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Verzija MySQL klijenta"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Napravi relaciju"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Napravi relaciju"
@@ -7153,18 +7158,17 @@ msgid "Display MIME types"
msgstr "Dostupni MIME-tipovi"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Domaćin"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Vreme kreiranja"
@@ -7377,15 +7381,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL rezultat"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Generisao"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
@@ -7481,7 +7477,7 @@ msgstr "Neispravan broj polja u CSV ulazu na liniji %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Naziv tabele"
@@ -7845,7 +7841,7 @@ msgstr "Pravljenje PDF-ova"
msgid "Displaying Column Comments"
msgstr "Prikazujem komentare kolone"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Tranformacije čitača"
@@ -7946,10 +7942,10 @@ msgid "Variable"
msgstr "Promenljiva"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Vrednost"
@@ -8008,7 +8004,7 @@ msgstr "Napravi lozinku"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -8047,8 +8043,8 @@ msgid "Edit event"
msgstr "Događaji"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8110,7 +8106,7 @@ msgstr "Kompletan INSERT (sa imenima polja)"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8166,7 +8162,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8253,35 +8249,35 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -8289,25 +8285,25 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Dozvoljava izvršavanje sačuvanih rutina."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Rutine"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funkcija"
@@ -8514,7 +8510,7 @@ msgstr "Sadržaj"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributi"
@@ -8623,12 +8619,12 @@ msgid "Toggle scratchboard"
msgstr "Uključi/isključi radnu tablu"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nepoznat jezik: %1$s."
@@ -8678,7 +8674,7 @@ msgstr "Izvrši SQL upit(e) na serveru %s"
msgid "Run SQL query/queries on database %s"
msgstr "Izvrši SQL upit(e) na bazi %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8690,11 +8686,11 @@ msgstr "Kalendar"
msgid "Columns"
msgstr "Imena kolona"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Zapamti SQL-upit"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
@@ -8720,7 +8716,7 @@ msgstr "Vidi samo"
#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
msgid "web server upload directory"
-msgstr "direktorijum za slanje veb servera "
+msgstr "direktorijum za slanje veb servera"
#: libraries/sqlparser.lib.php:136
msgid ""
@@ -8793,13 +8789,13 @@ msgstr ""
"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane "
"neophodne PHP ekstenzije opisane u %sdokumentaciji%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Praćenje je aktivno."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "ld type is \"enum\" or \"set\", please enter the values using this "
@@ -8817,7 +8813,7 @@ msgstr ""
"(\"'\") koristite ih u \"izbegnutom\" (escaped) obliku (na primer '\\\\xyz' "
"ili 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8825,19 +8821,19 @@ msgstr ""
"Za podrazumevanu vrednost, unesite samo jednu vrednost, bez kosih crta ili "
"navodnika u ovom obliku: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Ključ"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Dodaj/obriši kolonu"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8846,11 +8842,11 @@ msgstr ""
"Za listu dostupnih opcija transformacije i njihove transformacije MIME-"
"tipova, kliknite na %sopise transformacija%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Opcije transformacije"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8862,79 +8858,79 @@ msgstr ""
"apostrof (\"'\") u te vrednosti, stavite obrnutu kosu crtu ispred njih (na "
"primer '\\\\xyz' ili 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "nema"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primarni"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Tekst ključ"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Posle %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "Dodaj %s polja"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Morate dodati barem jedno polje."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Pogon skladištenja"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Pretraživanje"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9138,13 +9134,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9154,8 +9150,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "U ZIP arhivi nema datoteka!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Greška u ZIP arhivi:"
@@ -9339,20 +9335,26 @@ msgstr ""
msgid "No databases"
msgstr "Baza ne postoji"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "naziv tabele"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "naziv tabele"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Napravi tabelu"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Izaberite bazu"
@@ -9969,7 +9971,7 @@ msgstr "Privilegije vezane za tabele"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom "
+msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom"
#: server_privileges.php:711
msgid "Administration"
@@ -10542,7 +10544,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Ime"
@@ -11778,37 +11780,37 @@ msgstr ""
msgid "Show form"
msgstr "Prikaži boju"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11817,39 +11819,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11857,21 +11859,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11880,7 +11882,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11890,37 +11892,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11930,8 +11932,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Baza ne postoji"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Pregledaj strane vrednosti"
@@ -11965,21 +11967,29 @@ msgstr "Prikaz kao SQL upit"
msgid "Validated SQL"
msgstr "Proveri SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL rezultat"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Generisao"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem pri indeksiranju tabele `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Naziv"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Izabrani korisnici su uspešno obrisani."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12118,7 +12128,7 @@ msgstr "Vrednost"
msgid "Table %s already exists!"
msgstr "Tabela %s već postoji!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "Tabela %s je odbačena"
@@ -12251,7 +12261,7 @@ msgstr "Opcije tabele"
#: tbl_operations.php:362
msgid "Rename table to"
-msgstr "Promeni ime tabele u "
+msgstr "Promeni ime tabele u"
#: tbl_operations.php:544
msgid "Copy table to (database. table):"
@@ -12334,45 +12344,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Proveri referencijalni integritet:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Prikaži tabele"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Zauzeće"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Zauzeće"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Efektivne"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Statistike reda"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamički"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Dužina reda"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Veličina reda"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12683,30 +12693,30 @@ msgstr ""
msgid "Create version"
msgstr "Napravi relaciju"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Napravi \"upit po primeru\" (džoker: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL upit"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
msgid "How to use"
msgstr "verzija PHP-a"
diff --git a/po/sv.po b/po/sv.po
index bed6833fae..f9753ef75a 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-05-11 20:42+0200\n"
"Last-Translator: ProUser \n"
"Language-Team: swedish \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Visa alla"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Sida:"
@@ -39,30 +39,30 @@ msgstr ""
"för att blockera flerfönster uppdateringar."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Sök"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Sök"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kör"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Databaskommentar"
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tabellkommentarer"
@@ -124,14 +124,14 @@ msgstr "Tabellkommentarer"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Kolumn"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Kolumn"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -156,9 +156,9 @@ msgstr "Typ"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -168,7 +168,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Standardvärde"
@@ -177,18 +177,18 @@ msgstr "Standardvärde"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Länkar till"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Kommentarer"
@@ -199,11 +199,11 @@ msgstr "Kommentarer"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Nej"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Ja"
msgid "View dump (schema) of database"
msgstr "Visa dump (schema) av databasen"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Inga tabeller funna i databasen."
@@ -322,8 +322,8 @@ msgstr "Byt till den kopierade databasen"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -342,8 +342,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Editera eller exportera relationsschema"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -353,45 +353,44 @@ msgstr "Editera eller exportera relationsschema"
msgid "Table"
msgstr "Tabell"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rader"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Storlek"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "används"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Skapande"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Senaste uppdatering"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Senaste kontroll"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -480,13 +479,13 @@ msgstr "Använd tabeller"
msgid "SQL query on database %s :"
msgstr "SQL-fråga i databas %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Skicka fråga"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Åtkomst nekad"
@@ -520,8 +519,8 @@ msgstr[0] "%1$s träff i tabell %2$s "
msgstr[1] "%1$s träffar i tabell %2$s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Bläddra"
@@ -597,11 +596,11 @@ msgstr "Vyn %s har tagits bort"
msgid "Table %s has been dropped"
msgstr "Tabellen %s har tagits bort"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Spårning är aktiv."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Spårning är inaktiv."
@@ -613,7 +612,7 @@ msgid ""
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Vy"
@@ -658,7 +657,7 @@ msgstr "Kontrollera tabeller med overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -667,17 +666,18 @@ msgid "Export"
msgstr "Exportera"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Utskriftsvänlig visning"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Töm"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -720,15 +720,14 @@ msgid "Tracked tables"
msgstr "Spårade tabeller"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Databas"
@@ -746,7 +745,7 @@ msgstr "Uppdaterad"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -937,13 +936,13 @@ msgstr "Visar bokmärke"
msgid "The bookmark has been deleted."
msgstr "Bokmärket har tagits bort."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Filen kunde inte läsas"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -973,7 +972,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Kunde inte läsa in tillägg för import, kontrollera din installation!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Bokmärket %s har skapats"
@@ -1000,8 +999,8 @@ msgstr ""
"att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s "
"tidsbegränsningar."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1110,9 +1109,9 @@ msgid "Close"
msgstr "Stäng"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Redigera"
@@ -1136,7 +1135,7 @@ msgstr "Statisk data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Totalt"
@@ -1147,12 +1146,12 @@ msgid "Other"
msgstr "Annan"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1235,13 +1234,13 @@ msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "Mb"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "kB"
@@ -1299,27 +1298,27 @@ msgid "Connections"
msgstr "Anslutningar"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1359,9 +1358,9 @@ msgstr "Lägg till minst en variabel till serien"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Inget"
@@ -1544,7 +1543,7 @@ msgstr "Förklara utdata"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Tid"
@@ -1855,7 +1854,7 @@ msgstr "%d är inte ett giltigt radnummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1869,7 +1868,7 @@ msgstr "Dölj sökkriterier"
msgid "Show search criteria"
msgstr "Visa sökkriterier"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Zoom sökning"
@@ -2044,7 +2043,7 @@ msgstr "Ändra lösenord"
msgid "More"
msgstr "Mera"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2131,63 +2130,63 @@ msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "mars"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "dec"
@@ -2225,32 +2224,32 @@ msgid "Sun"
msgstr "Sön"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Mån"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Tis"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Tors"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Lör"
@@ -2392,11 +2391,11 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Fel behörigheter på konfigurationsfilen, bör inte vara \"world\" skrivbar!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Teckenstorlek"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "För många felmeddelanden, en del kommer inte visas."
@@ -2404,12 +2403,12 @@ msgstr "För många felmeddelanden, en del kommer inte visas."
msgid "File was not an uploaded file."
msgstr "Filen var inte en uppladdad fil."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2417,37 +2416,37 @@ msgstr ""
"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades "
"i HTML-formuläret."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Den uppladdade filen blev endast delvis uppladdad."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Saknar en temporär katalog."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Misslyckades att skriva fil till disk."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Filuppladdning stoppades av tillägg."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Okänt fel i filuppladdning."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Fel när du flyttar uppladdad fil."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Kan inte läsa (flyttad) uppladdad fil."
@@ -2461,7 +2460,7 @@ msgstr "Inga index är definierade!"
msgid "Indexes"
msgstr "Index"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2499,46 +2498,46 @@ msgstr ""
"Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas "
"bort."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Databaserna"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Lägg till"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operationer"
@@ -2617,27 +2616,27 @@ msgstr "Insticksprogram"
msgid "Engines"
msgstr "Motorer"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fel"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d rad påverkad."
msgstr[1] "%1$d rader påverkade."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d rad borttagen."
msgstr[1] "%1$d rader borttagna."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2682,43 +2681,43 @@ msgstr "%s har inaktiverats på denna MySQL-server."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "Okänd tabellstatus: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "Källdatabas `%s` hittades inte!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "Måldatabas `%s` hittades inte!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Ogiltig databas"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Ogiltigt tabellnamn"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Fel vid namnbyte av tabell %1$s till %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "Tabell %1$s har döpts om till %2$s."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Kunde inte spara UI inställningarna för tabellen"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2727,7 +2726,7 @@ msgstr ""
"Misslyckades med att rensa UI inställningarna (se $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2738,16 +2737,16 @@ msgstr ""
"efter att du uppdaterar denna sida. Kontrollera om tabellens struktur har "
"förändrats."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Ingen giltig sökväg för tema %s hittades!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Ingen förhandsgranskning tillgänglig."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "använd detta"
@@ -2810,7 +2809,7 @@ msgstr ""
"till 9.223.372.036.854.775.807, osignerat inom intervallet 0 till "
"18.446.744.073.709.551.615"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2863,12 +2862,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "Ett alias för BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Ett datum, supportat område är %1$s till %2$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "En datum och tidskombination, supportat område är %1$s till %2$s"
@@ -2881,7 +2880,7 @@ msgstr ""
"En tidsstämpel, intervallet är 1970-01-01 00:00:01 UTC till 2038-01-09 "
"03:14:07 UTC, lagrad som antalet sekunder sedan 1970-01-01 00:00:00 UTC"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "En tid, området är %1$s till %2$s"
@@ -2900,7 +2899,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2913,7 +2912,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3010,74 +3009,71 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Create an index"
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Datum och tid"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "Sträng"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Spatial"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3149,7 +3145,7 @@ msgstr "Välj server"
msgid "Cookies must be enabled past this point."
msgstr "Kakor (cookies) måste tillåtas för att gå vidare."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3157,14 +3153,14 @@ msgstr ""
"Inloggning utan lösenord är inte tillåtet enligt konfiguration (se "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Ingen aktivitet sedan %s sekunder; var god logga in igen"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Kan ej logga in på MySQL-server"
@@ -3208,18 +3204,18 @@ msgstr "Tabeller"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Outnyttjat"
@@ -3326,8 +3322,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-fråga"
@@ -3337,144 +3333,144 @@ msgstr "SQL-fråga"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Lyckades inte ansluta till SQL validerare!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Förklara SQL-kod"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Utan SQL-förklaring"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "Utan PHP-kod"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Skapa PHP-kod"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Uppdatera"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Hoppa över SQL-validering"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Validera SQL-kod"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Redigera denna fråga"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Infogad"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profilering"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sön"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y kl %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s dagar, %s timmar, %s minuter och %s sekunder"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Saknade parametrar:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Starta"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Föregående"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Nästa"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Slut"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Hoppa till databas "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Klicka för att växla"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Gå igenom din dator:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Välj katalog att ladda upp till från web-server listningen %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Det finns inga filer att ladda upp"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Utför"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Skriv ut"
@@ -3558,68 +3554,68 @@ msgstr "båda av ovanstående"
msgid "neither of the above"
msgstr "Ingen av ovanstående"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Inte ett positivt tal"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Inte ett icke-negativt tal"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Inte ett giltigt portnummer"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Felaktigt värde"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Värdet måste vara lika med eller mindre än %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Saknar data för %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "otillgänglig"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" kräver %s tillägg"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "Import fungerar inte, saknad funktion (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "Export fungerar inte, saknad funktion (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL validerare är inaktiverad"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP-tillägg hittas inte"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "Maximum %s"
@@ -3640,7 +3636,7 @@ msgid "Set value: %s"
msgstr "Ange värde: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Återställ standardvärde"
@@ -3943,7 +3939,7 @@ msgid "Character set of the file"
msgstr "Filens teckenuppsättning"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4042,7 +4038,7 @@ msgstr "Märk nyckel"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-typ"
@@ -4166,8 +4162,8 @@ msgstr "Anpassa förvalda alternativ"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4598,14 +4594,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minsta antal tabeller för att visa tabellen filter box"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Minsta antal tabeller för att visa tabellen filter box"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Sträng som separerar databaser i olika trädnivåer"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Avskiljare för databasträd"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4613,39 +4615,39 @@ msgstr ""
"Endast lätt version; visa databaser i ett träd (bestämt av avskiljaren "
"definierad nedan)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Visa databaser i ett träd"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Inaktivera detta om du vill se alla databaser samtidigt"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Använd lätt version"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Max djup i tabellträd"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Sträng som separerar tabeller i olika trädnivåer"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Avskiljare för tabellträd"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL där logotyp i navigeringsramen kommer att peka till"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo länkadress"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4653,38 +4655,38 @@ msgstr ""
"Öppna den länkade sidan i huvudfönstret ([kbd]main[/kbd]) eller i ett nytt "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo-länk mål"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Markera server under muspekaren"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Aktivera framhävning"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Maximalt antal nyligen använa tabeller, ange 0 för att avaktivera"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Nyligen använda tabeller"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Maximalt antal tecken som visas i alla icke-numeriska kolumner i "
"bläddringsvyn"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Begränsa antalet kolumn tecken"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4695,11 +4697,11 @@ msgstr ""
"lätt att glömma att logga ut från andra servrar när den är ansluten till "
"flera servrar."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Radera alla cookies vid utloggning"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4707,11 +4709,11 @@ msgstr ""
"Ange om tidigareinloggningen ska återkallas eller inte vid "
"autentiseringsläge med cookies"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Återkalla användarnamn"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4723,48 +4725,48 @@ msgstr ""
"session, och kommer tas bort så snart webbläsaren stängs. Detta är "
"rekommenderat för icke tillförlitliga miljöer."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Lagringsplats för inloggnings-cookie"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Anger hur lång tid (i sekunder) som en inloggnings-cookie är giltig"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Giltighet för inloggnings-cookie"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Dubbel storlek på textområdet för LONGTEXT kolumner"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Större textarea för LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "Maximalt antal tecken som används när en SQL-fråga visas"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Maximal visad SQL-längd"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Användare kan inte ange ett högre värde"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "Maximalt antal databaser som visas i vänster ram och databaslista"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Maximalt antal databaser"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4773,19 +4775,19 @@ msgstr ""
"Antal rader som visas vid visning av resultatet. Om resultatet innehåller "
"fler rader, visas länkar för "Föregående" och "Nästa"."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Maximalt antal rader att visa"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Maximalt antal tabeller som visas i tabellista"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Maximalt antal tabeller"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4793,11 +4795,11 @@ msgstr ""
"Inaktivera standardvarning vilken visas om mcrypt saknas för cookie "
"autentisering"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt varning"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4805,43 +4807,43 @@ msgstr ""
"Antal byte som ett skript har tillåtelse att allokera, t.ex. [kbd]32M[/kbd] "
"([kbd]0[/kbd] för ingen begränsning)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Minnesgräns"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Dessa är Redigera, Kopiera och Radera länkar"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Var länkarna i tabellraden visas"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Använd naturlig ordning vid sortering av tabell- och databasnamn"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Naturlig ordning"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Använd enbart ikoner, endast text eller både och"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Ikonbaserat navigeringsfält"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "Använd GZip utmatningsbuffer för ökad hastighet i HTTP-överföringar"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip Utmatningsbuffer"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4849,19 +4851,19 @@ msgstr ""
"[kbd]SMART[/kbd] - dvs fallande ordning för kolumner av typen TIME, DATE, "
"DATETIME och TIMESTAMP, stigande ordning annars"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Förvald sorteringsordning"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "Använd bestående anslutningar till MySQL-databaser"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Bestående anslutningar"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4871,23 +4873,23 @@ msgstr ""
"någon av de nödvändiga tabellerna för phpMyAdmin Configuration Storage inte "
"kunde hittas"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Saknade phpMyAdmin konfiguration lagringstabeller"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Ikoniska tabell transaktioner"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Hindra BLOB och kolumner BINARY från redigering"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Skydda binära kolumner"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4897,114 +4899,114 @@ msgstr ""
"konfigurationslagring). Om inakiverad, så används JS-rutiner för att visa "
"frågehistorik (förloras när fönstret stängs)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Permanent frågehistorik"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Antal frågor som sparas i historiken"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Längd på frågehistorik"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Flik som visas när man öppnar ett nytt frågefönster"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Default frågefönsterflik"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Höjd på sökfönster (i pixlar)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Fråga höjd på frågefönster"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Sökning fönster bredd (i pixlar)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Sökning fönsterbredd"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Välj vilka funktioner som kommer användas för konvertering av "
"teckenuppsättning"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Omvandlingsmotor"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Vid bläddring i tabeller, är sorteringen av varje tabell ihågkommen"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Kom ihåg tabellens sortering"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Upprepa rubrik varje X celler, [kbd]0[/kbd] avaktiverar den här funktionen"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Reparera rubriker"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Spara alla redigerade celler omedelbart"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Katalog där exporten kan sparas på servern"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Spara katalog"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Lämna tomt om den inte används"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Host auktorisation för"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Lämna blankt för defaultvärden"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Behörighetsregler för host"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Tillåt inloggning utan lösenord"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Tillåt root-inloggning"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP Basic Auth Realm namn att visa när man gör HTTP Auth"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5014,19 +5016,19 @@ msgstr ""
"hårdvaruautentisering[/a] (inte placerad i din dokumentrotkatalog; förslag: /"
"etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey konfigurationsfil"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Autentiseringsmetod att använda"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Autentiseringstyp"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5034,11 +5036,11 @@ msgstr ""
"Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Tabell för bokmärken"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5046,31 +5048,31 @@ msgstr ""
"Lämna tomt för inget stöd för kolumnkommentarer/mime-typer, förslag: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Tabell för kolumninformation"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "Komprimera anslutning till MySQL-servern"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Komprimera anslutning"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Hur ansluta till servern, behåll [kbd]TCP[/ kbd] om du är osäker"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Anslutningstyp"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Lösenord för kontrollanvändare"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5079,11 +5081,11 @@ msgstr ""
"information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/controluser]wiki"
"[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Kontrollanvändare"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5091,19 +5093,19 @@ msgstr ""
"En alternativt värd för att hålla konfiguratione lagring, lämna tomt för att "
"använda den aktuella värden"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Kontroll värd"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Räkna tabeller vid visning av databaslista"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Räkna tabeller"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5111,11 +5113,11 @@ msgstr ""
"Lämna tomt för inget stöd för Designer, förslag: [kbd]pma_designer_coords[/"
"kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tabell för Designer"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5123,28 +5125,28 @@ msgstr ""
"Mer information på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] och [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "Inaktivera användning av INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Vilket PHP-tillägg som ska användas; du bör använda mysqli om det stöds"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP-tillägg att använda"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Dölj databaser som matchar reguljärt uttryck (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Dölj databaser"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5152,23 +5154,23 @@ msgstr ""
"Lämna blankt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history"
"[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "Tabell för SQL-frågehistorik"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "Värdnamn där MySQL-servern körs"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Serverns värdnamn"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "URL för utloggning"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5176,19 +5178,19 @@ msgstr ""
"Begränsar antalet tabell preferenser som lagras i databasen, de äldsta "
"posterna tas bort automatiskt"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Maximalt antal tabell inställningar att spara"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Försök ansluta utan lösenord"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Anslut utan lösenord"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5202,29 +5204,29 @@ msgstr ""
"lista. Det är bara att skriva sina namn i ordning och använda [kbd]*[/kbd] i "
"slutet för att visa resten i alfabetisk ordning."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Visa endast listade databaser"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Lämna tomt om inte config auth används"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Löseenord för config auth"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Lämna blankt för inget stöd för PDF-schema, förslag: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF-schema: Tabell för sidor"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5234,19 +5236,19 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] för komplett information. "
"Lämna tomt för inget stöd. Förslag: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Databasnamn"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "Port som MySQL-servern lyssnar på, lämna blankt för default"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Serverport"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5254,11 +5256,11 @@ msgstr ""
"Lämna tomt för iatt inte spara nyligen använda användarinställningar "
"tabeller för alla sessioner i databasen, förslag: [kbd]pma_config[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Nyligen använd tabell"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5266,19 +5268,19 @@ msgstr ""
"Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/relation]"
"relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Relations tabell"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "SQL-kommando för att hämta tillgängliga databaser"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES-kommando"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5286,42 +5288,42 @@ msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/"
"a] för ett exempel"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Signon sessionsnamn"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Inloggnings URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "Sockel som MySQL-servern lyssnar på, lämna tomt för default"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Server socket"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "Aktivera SSL för anslutning till MySQL-servern"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "Använd SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"Lämna tomt för inget stöd för PDF-schema, förslag: [kbd]pma_table_coords[/"
"kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF-schema: tabellkoordinater"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5329,11 +5331,11 @@ msgstr ""
"Tabell för att beskriva fält att visa, lämna tomt för inget stöd; förslag: "
"[kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Visa tabellkolumner"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5341,11 +5343,11 @@ msgstr ""
"Lämna tomt för iatt inte spara nyligen använda användarinställningstabeller "
"för alla sessioner, förslag: [kbd]pma_config[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "Tabell för inställningar av användargränssnittet"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5353,11 +5355,11 @@ msgstr ""
"Om DROP DATABASE IF EXISTS finns, kommando skall läggas till som första "
"raden i loggen när man skapar en databas."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "Lägg till DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5365,11 +5367,11 @@ msgstr ""
"Om DROP TABLE IF EXISTS kommando finns, kommer läggas till som första raden "
"i loggen när man skapar en tabell."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "Lägg till DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5377,21 +5379,21 @@ msgstr ""
"Om DROP VIEW IF EXISTS finns, kommando skall läggas till som första raden i "
"loggen när man skapar en vy."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "Lägg till DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Definierar lista med påståenden vilken auto-creation använder för nya "
"versioner."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "Kommandon att spåra"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5399,11 +5401,11 @@ msgstr ""
"Lämna tomt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history[/"
"kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL-fråga spårningstabellen"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5411,11 +5413,11 @@ msgstr ""
"Huruvida spårnings mekanismen skapar versioner för tabeller och vyer "
"automatiskt."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Automatiskt skapa versioner"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5423,15 +5425,15 @@ msgstr ""
"Lämna tomt för att inga användarinställningar ska lagras i databasen, "
"förslag: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Användarinställningar lagringstabell"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Användare för config auth"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5439,19 +5441,19 @@ msgstr ""
"En användarvänlig beskrivning av denna server. Lämna tomt för att visa "
"värdnamnet istället."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Beskrivande namn för denna server"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Ifall en användare ska få se en "visa alla(rader)" knapp"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Tillåt att visa alla rader"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5461,47 +5463,47 @@ msgstr ""
"autentisering eftersom lösenordet är hårdkodat i konfigurationsfilen; detta "
"begränsar inte möjligheten att utföra samma kommando direkt"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Visa ändra lösenord-formulär"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Visa skapa databas-formulär"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Visa eller dölj en kolumn som visar tidsstämpeln för skapandet av samtliga "
"tabeller"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Visa tidsstämpel för skapandet"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Visa eller dölj en kolumn som visar den senaste uppdaterade tidsstämpeln för "
"alla tabeller"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Visa senast ändrade tidstämpel"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Visa eller dölj en kolumn visar den sista kontroll tidsstämpeln för alla "
"tabeller"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Visa senaste kontrolltidstämpel"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5509,37 +5511,37 @@ msgstr ""
"Definierar oavsett om typ display riktning alternativ visas när du bläddrar "
"en tabell"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Visa visnings riktning"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr "Anger om typ-fält bör först visas i redigera / infogningsläget"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Visa fälttyper"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Visa funktionsfälten i ändra/infoga-läge"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Visa funktionsfält"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "Om du vill visa tips eller inte"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "Visa tips"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5547,40 +5549,40 @@ msgstr ""
"Visar länk till [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"resultatet"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "Visa phpinfo()-länk"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Visa detaljerad MySQL-serverinformation"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "Anger om SQL-frågor som genereras av phpMyAdmin ska visas"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Visa SQL-frågor"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "Definierar om frågerutan ska stanna på skärmen efter inskickandet"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Behåll sökrutan"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "Tillåt visning av databas- och tabellstatistik (t.ex.av utrymme)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Visa statistik"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5588,11 +5590,11 @@ msgstr ""
"Om tooltip används och en databaskommentar är angiven, kommer denna vända "
"kommentaren och det riktiga namnet"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Visa databaskommentar istället för dess namn"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5604,30 +5606,30 @@ msgstr ""
"['LeftFrameTableSeparator'] , så endast mappen kallas för detta alias, "
"tabellnamnet självt förblir oförändrat"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Visa tabellkommentar istället för dess namn"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Visa tabellkommentarer i tooltip"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Markera använda tabeller och gör det möjligt att visa databaser med låsta "
"tabeller"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Hoppa över låsta tabeller"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "Kräver att SQL Validator är aktiverad"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5637,7 +5639,7 @@ msgstr "Kräver att SQL Validator är aktiverad"
msgid "Password"
msgstr "Lösenord"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5645,11 +5647,11 @@ msgstr ""
"[strong]Varning:[/strong] kräver PHP SOAP tillägg eller installation av PEAR "
"SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "Aktivera SQL Validator"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5657,20 +5659,20 @@ msgstr ""
"Om du har ett eget användarnamn, ange det här (default är [kbd]anonymous[/"
"kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Användarnamn"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "En varning visas på huvudsidan om Suhosin upptäcks"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin varning"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5678,11 +5680,11 @@ msgstr ""
"Textareans storlek (kolumner) i redigeringsläge, detta värde kommer betonas "
"för SQL-frågans textfält (* 2) och för frågan fönster (* 1,25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Textarea kolumner"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5690,31 +5692,31 @@ msgstr ""
"Textareans storlek (rader) i redigeringsläge, detta värde kommer betonas för "
"SQL-fråga textfält (* 2) och för frågan fönster (* 1,25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Textarea rader"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Titel på webbläsarfönstret när en databas är vald"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Titel på webbläsarfönstret när ingenting är markerat"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Standard titel"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Titel på webbläsarfönstret när en server är vald"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Titel på webbläsarfönstret när en tabell är markerad"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5726,27 +5728,27 @@ msgstr ""
"som kommer från proxyservern 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/"
"kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "Lista med betrodda proxies för IP allow/deny"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Katalog på servern där du kan ladda upp filer för import"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Uppladdningskatalogen"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Tillåt sökning i hela databasen"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Använd databassökning"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5754,27 +5756,27 @@ msgstr ""
"När det är avstängt, kan användare inte ange något av alternativen nedan, "
"oberoende av kryssrutan till höger"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Aktivera fliken Utvecklare i inställningar"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Sök efter senaste version"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Aktivera kontroll efter senaste version på phpMyAdmin hemsida"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Versionskontroll"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5782,7 +5784,7 @@ msgstr ""
"Aktivera [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-"
"komprimering för import- och exportoperationer"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5803,82 +5805,82 @@ msgid "Signon authentication"
msgstr "Signon autentisering"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV med LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "OpenDocument kalkylblad"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Snabb"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Anpassad"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Databas exportalternativ"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV för MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "OpenDocument text"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Kunde inte initiera Drizzle anslutnings-bibliotek"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Kunde inte ansluta till Drizzle-server"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "Kunde inte ansluta till MySQL-server"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Tomt användarnamn vid användning av config-autentisering"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "Tomt sessionsnamn för signon vid användning av signon-autentisering"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "Tom URL för signon vid användning av signon-autentisering"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "Tom phpMyAdmin kontrollanvändare vid användning av pmadb"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "Tomt lösenord för phpMyAdmin kontrollanvändare vid användning av pmadb"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Felaktig IP-adress: %s"
@@ -5898,7 +5900,7 @@ msgstr "%s tillägg saknas. Vänligen kontrollera din PHP konfiguration."
msgid "possible deep recursion attack"
msgstr "möjlig djupgående rekursiv attack"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5906,15 +5908,15 @@ msgstr ""
"Servern svarar inte (eller den lokala serverns socket är inte korrekt "
"konfigurerad)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Servern svarar inte."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Kontrollera privilegierna för katalogen som innehåller databasen."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Detaljer..."
@@ -5978,7 +5980,7 @@ msgstr "Skapa tabell"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Namn"
@@ -6135,25 +6137,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Omkodning:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%1$s från %2$s grenen"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "ingen gren"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Git revision"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "inlaggd %1$s av %2$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "Skriven den %1$s av %2$s"
@@ -6870,18 +6872,17 @@ msgid "Display MIME types"
msgstr "Visa MIME-typer"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Värd"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Skapad"
@@ -7101,15 +7102,7 @@ msgstr "Inga data finns för GIS visualisering."
msgid "GLOBALS overwrite attempt"
msgstr "Globals överskrivningsförsök"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL-resultat"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Genererad av"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)."
@@ -7210,7 +7203,7 @@ msgstr "Ogiltigt antal fält i CSV indata på rad %d."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Tabellnamn"
@@ -7566,7 +7559,7 @@ msgstr "Skapande av PDF"
msgid "Displaying Column Comments"
msgstr "Visning av kolumnkommentarer"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Webbläsaromvandling"
@@ -7672,10 +7665,10 @@ msgid "Variable"
msgstr "Variabel"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Värde"
@@ -7738,7 +7731,7 @@ msgstr "Generera lösenord"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7775,8 +7768,8 @@ msgid "Edit event"
msgstr "Editera händelse"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Fel i utförandebegäran"
@@ -7826,7 +7819,7 @@ msgstr "Vid avslut, bevara"
msgid "Definer"
msgstr "Definierare"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Defineraren måste vara i formatet: \"användarnamn@hostname\""
@@ -7884,7 +7877,7 @@ msgstr ""
"undvika eventuella problem."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Ogiltig rutintyp: \"%s\""
@@ -7955,17 +7948,17 @@ msgstr "Säkerhetstyp"
msgid "SQL data access"
msgstr "SQL dataaccess"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Du måste ange ett rutinnamn"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Ogiltig riktning \"%s\" angiven för parameter."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -7973,41 +7966,41 @@ msgstr ""
"Du måste ange Längd / värden rutin parametrar av typen ENUM, SET, VARCHAR "
"och VARBINARY."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Du måste ange ett namn och en typ för varje rutinparameter."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Du måste ange en giltig returtyp för händelsen."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Du måste ange en rutindefinition."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d rad berörs av det sista uttrycket inom proceduren"
msgstr[1] "%d rader berörs av det sista uttrycket inom proceduren"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Exekveringsresultat av rutin %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Utför rutin"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Rutinparametrar"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funktion"
@@ -8182,7 +8175,7 @@ msgstr "Innehållsförteckning"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Attribut"
@@ -8281,12 +8274,12 @@ msgid "Toggle scratchboard"
msgstr "Visa/dölj skisstavla"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Okänt språk: %1$s."
@@ -8332,7 +8325,7 @@ msgstr "Kör SQL-fråga/frågor på server %s"
msgid "Run SQL query/queries on database %s"
msgstr "Kör SQL-fråga/frågor i databasen %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Rensa"
@@ -8341,11 +8334,11 @@ msgstr "Rensa"
msgid "Columns"
msgstr "Kolumn"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Skapa bokmärke för den här SQL-frågan"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Låt varje användare få tillgång till detta bokmärke"
@@ -8445,12 +8438,12 @@ msgstr ""
"SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de "
"nödvändiga PHP-tilläggen enligt %sdokumentationen%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "Spårning av %s är aktiverad."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8462,7 +8455,7 @@ msgstr ""
"ett enkelcitat (\"'\") i värdena, skriv ett backslash före tecknet (t.ex. "
"'\\\\xyz' eller 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8470,17 +8463,17 @@ msgstr ""
"För standardvärden, ange endast ett enstaka värde, utan bakåtstreck eller "
"citattecken, enligt formatet: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Index"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Flytta kolumn"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8489,11 +8482,11 @@ msgstr ""
"För en lista med tillgängliga omvandlingsparametrar och deras MIME-"
"typomvandlingar, klicka på %somvandlingsbeskrivningar%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Omvandlingsparametrar"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8505,71 +8498,71 @@ msgstr ""
"enkelcitat (\"'\") i värdena, skriv ett bakåtstreck före tecknet (t.ex. '\\"
"\\xyz' eller 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM eller SET data för långt?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Få mer redigerings utrymme"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Inget"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Som definierat:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Primär"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Fulltext"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "efter %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Lägg till %s fält"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "Du måste lägga till åtminstone en kolumn."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Lagringsmotor"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Partitionsdefinition"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Aktör"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Tabellsök"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Redigera / Infoga"
@@ -8739,11 +8732,11 @@ msgstr ""
"Dina inställningar kommer enbart att sparas för den aktuella sessionen.För "
"att lagra dem permanent krävs %sphpMyAdmin configuration storage%s."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Kunde inte spara konfigurationen"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8755,8 +8748,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "Inga filer hittades i ZIP-arkivet!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Fel i ZIP-arkiv:"
@@ -8930,16 +8923,22 @@ msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga problem."
msgid "No databases"
msgstr "Inga databaser"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Filtrera tabeller efter namn"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Filtrera tabeller efter namn"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Skapa tabell"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Välj en databas"
@@ -10088,7 +10087,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Frågor sedan start: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Uppgifterna"
@@ -11328,14 +11327,14 @@ msgstr "Ignorera fel"
msgid "Show form"
msgstr "Visa formulär"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
"Varken URL-wrapper eller CURL är tillgängliga. Versionskontroll är inte "
"möjlig."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11343,15 +11342,15 @@ msgstr ""
"Lyckades ej läsa version. Du är kanske offline, eller så svarar inte "
"uppgraderingsservern."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Ogiltig versionssträng från servern"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Ej analyserbar versionssträng"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11360,11 +11359,11 @@ msgstr ""
"Du använder Git version, kör [kbd]git pull[/ kbd] :-) [br] Den senaste "
"stabila versionen är%s, släppt den %s."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Ingen nyare stabil version finns tillgänglig"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11378,7 +11377,7 @@ msgstr ""
"inte vara tillförlitligg om din IP tillhör till en ISP där tusentals "
"användare, inklusive dig, är anslutna till."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11388,7 +11387,7 @@ msgstr ""
"autentisering, så en nyckel genererades automatiskt åt dig. Den används för "
"att kryptera cookies; du behöver inte komma ihåg den."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11397,7 +11396,7 @@ msgstr ""
"%sBzip2 komprimering och dekomprimering%s kräver funktioner (%s) som inte är "
"tillgängliga på detta system."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11405,12 +11404,12 @@ msgstr ""
"Detta värde bör dubbelkollas för att försäkra att denna katalog varken är "
"åtkomlig för världen eller skrivbar för andra användare på din server."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Denna %soption%s ska vara aktiv om din webbserver stödjer det."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11419,7 +11418,7 @@ msgstr ""
"%sGZip komprimering och dekomprimering%s kräver funktioner (%s) som inte är "
"tillgängliga på detta system."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11430,7 +11429,7 @@ msgstr ""
"ogiltigförklarande av session om %ssession.gc_maxlifetime%s s är mindre än "
"dess värde (för närvarande %d)."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11440,7 +11439,7 @@ msgstr ""
"mest. Värden större än 1800 kan innebära en säkerhetsrisk som "
"identitetsstöld.."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11450,7 +11449,7 @@ msgstr ""
"måste%slogin cookie giltighet%s sättas till ett värde mindre eller lika med "
"den."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11463,7 +11462,7 @@ msgstr ""
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där "
"tusentals användare, inklusive dig, är anslutna till."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11478,7 +11477,7 @@ msgstr ""
"kan direkt komma åt ditt phpMyAdmin-verktyg. Sätt %sauthentication type%s "
"till [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11487,7 +11486,7 @@ msgstr ""
"%sZip kompression%s kräver funktioner (%s) som inte är tillgängliga på detta "
"system."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
@@ -11496,23 +11495,23 @@ msgstr ""
"%sZip dekompression%s kräver funktioner (%s) som inte är tillgängliga på "
"detta system."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "Du ska använda SSL-anslutning om din databasserver stödjer det."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Du ska använda mysqli av prestandaskäl."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Du tillåter anslutning till servern utan lösenord."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Nyckeln är för kort, den ska ha minst 8 tecken."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken."
@@ -11520,8 +11519,8 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken."
msgid "Wrong data"
msgstr "Felaktigt data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Bläddra bland främmande värden"
@@ -11551,21 +11550,29 @@ msgstr "Visar SQL-fråga"
msgid "Validated SQL"
msgstr "Validerad SQL-kod"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL-resultat"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Genererad av"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem med index för tabell `%s`"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etikett"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabell %1$s har ändrats"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Kolumnerna har flyttats framgångsrikt."
@@ -11683,7 +11690,7 @@ msgstr "Y värden"
msgid "Table %s already exists!"
msgstr "Tabell %s finns redan!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tabell %1$s har skapats."
@@ -11884,43 +11891,43 @@ msgstr "Ta bort partitionering"
msgid "Check referential integrity:"
msgstr "Kontrollera referensintegritet:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Visar tabeller"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Visa använt utrymme"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Användning"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effektiv"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Radstatistik"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statisk"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dynamisk"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Radlängd"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Radstorlek"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Nästa AutoIndex"
@@ -12207,28 +12214,28 @@ msgstr "Spåra dessa datahanterings kommandon:"
msgid "Create version"
msgstr "Skapa version"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Utför en \"Query By Example\" (jokertecken: \"%\") för två olika kolumner"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "Ytterligare sökkriterier"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Använd denna kolumn för att markera varje punkt"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Maximalt antal rader att visa"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Bläddra / Redigera punkter"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Hur du använder"
diff --git a/po/ta.po b/po/ta.po
index 7d9cf7174a..ee12ff148d 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2011-12-28 11:44+0200\n"
"Last-Translator: any anonymous user <>\n"
"Language-Team: Tamil \n"
@@ -23,11 +23,11 @@ msgid "Show all"
msgstr "அனைத்தையும் காட்டு"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "பக்க எண்"
@@ -42,30 +42,30 @@ msgstr ""
"மேம்படுத்தல்களை தடுக்க உள்ளமைக்கப்பட்டிருக்கின்றன."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "தேடு"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -75,7 +75,7 @@ msgstr "தேடு"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "செல் "
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "தரவுத்தள கருத்துரை"
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "அட்டவணைக் கருத்துரைகள்"
@@ -125,14 +125,14 @@ msgstr "அட்டவணைக் கருத்துரைகள்"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "நிரல்"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "நிரல்"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "வகை"
@@ -157,9 +157,9 @@ msgstr "வகை"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "வெற்று"
@@ -169,7 +169,7 @@ msgstr "வெற்று"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "முன்னிருப்பு"
@@ -178,18 +178,18 @@ msgstr "முன்னிருப்பு"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "இணைப்பு"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "கருத்துரைகள்"
@@ -200,11 +200,11 @@ msgstr "கருத்துரைகள்"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "இல்லை"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "ஆம்"
msgid "View dump (schema) of database"
msgstr "தரவுத்தளத்தின் திட்ட வடிவத்தைப் பார்"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "அட்டவணைகள் எதுவும் தரவுத்தளத்தில் காணப்படவில்லை"
@@ -325,8 +325,8 @@ msgstr "பிரதியான தரவுதளத்துக்கு ம
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -346,8 +346,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "தொடர்புசார் திட்டத்தை திருத்த அல்லது ஏற்ற"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -357,45 +357,44 @@ msgstr "தொடர்புசார் திட்டத்தை திர
msgid "Table"
msgstr "அட்டவணை"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "வரிசைகள்"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "அளவு"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "பயன்பாட்டில்"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "உருவாக்கம்"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "இறுதி இற்றைப்படுத்தல்"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "கடைசி சோதனை"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -484,13 +483,13 @@ msgstr "அட்டவணைகளை பயன்படுத்துக"
msgid "SQL query on database %s :"
msgstr "தரவுத்தளம் மீது %s %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "உலாவு"
@@ -603,11 +602,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -619,7 +618,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "நோக்கு"
@@ -664,7 +663,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -673,17 +672,18 @@ msgid "Export"
msgstr "ஏற்றுமதி"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "அச்சுப் பார்வை"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "வெறுமை"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -728,15 +728,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "தரவுத்தளம்"
@@ -754,7 +753,7 @@ msgstr "புதுப்பிக்கப்பட்டது"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "தகுநிலை"
@@ -948,13 +947,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -977,7 +976,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -999,8 +998,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1114,9 +1113,9 @@ msgid "Close"
msgstr "மூடு"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "தொகு"
@@ -1140,7 +1139,7 @@ msgstr "நிலையான தரவு"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "மொத்தம்"
@@ -1151,12 +1150,12 @@ msgid "Other"
msgstr "ஏனையது"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1235,13 +1234,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1299,27 +1298,27 @@ msgid "Connections"
msgstr "இணைப்புகள்"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1361,9 +1360,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "எதுவுமில்லை"
@@ -1543,7 +1542,7 @@ msgstr ""
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1870,7 +1869,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1884,7 +1883,7 @@ msgstr "தேடுதல் கட்டளை விதியை மறை"
msgid "Show search criteria"
msgstr "தேடுதல் கட்டளை விதியை காண்பி"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "பொரித்தாக்கி தேடு"
@@ -2052,7 +2051,7 @@ msgstr "கடவுச்சொல்லை மாற்று"
msgid "More"
msgstr "மேலும்"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2143,27 +2142,27 @@ msgid "December"
msgstr "டிசம்பர்"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "தை"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "மாசி"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "பங்குனி"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "சித்திரை"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2171,37 +2170,37 @@ msgid "May"
msgstr "வைகாசி"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "ஆணி"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "ஆடி"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "ஆவணி"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "புரட்டாதி"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "ஐப்பசி"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "காத்திகை"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "மார்கழி"
@@ -2250,32 +2249,32 @@ msgid "Sun"
msgstr "ஞாயி"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "திங்"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "செவ்"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "புத"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "வியா"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "வெள்"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "சனி"
@@ -2416,11 +2415,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "எழுத்துரு அளவு"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2428,47 +2427,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "ஒரு தற்காலிய உறையை காணவில்லை"
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2482,7 +2481,7 @@ msgstr ""
msgid "Indexes"
msgstr "சுட்டுகள்"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2518,46 +2517,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "தரவுத்தளங்கள்"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "சேவையன்"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "கட்டமைப்பு"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "செருகு"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "செயல்பாடுகள்"
@@ -2638,27 +2637,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "வலு"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d வரிசை மாற்றப்பட்டுள்ளது"
msgstr[1] "%1$d வரிசைகள் மாற்றப்பட்டுள்ளன"
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d வரிசை அகற்றப்பட்டுள்ளது"
msgstr[1] "%1$d வரிசைகள் அகற்றப்பட்டுள்ளன"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2701,51 +2700,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "தகுதியற்ற தரவுத்தளம்"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "தகுதியற்ற அட்டவணைப் பெயர்"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Database %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "%s தரவுத்தளமானது %s ஆக பெயர் மாற்றப்பட்டது"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2753,16 +2752,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "அதை ஏற்றுக்கொள்"
@@ -2814,7 +2813,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2855,13 +2854,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "பதிப்பை உருவாக்கு"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2872,7 +2871,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Create version"
msgid "A time, range is %1$s to %2$s"
@@ -2890,7 +2889,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2903,7 +2902,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3002,75 +3001,75 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "புதிய சுட்டை உருவாக்கு"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr ""
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgctxt "spatial types"
msgid "Spatial"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3141,20 +3140,20 @@ msgstr "சேவையன் தேர்வு"
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3198,18 +3197,18 @@ msgstr "அட்டவணைகள்"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "தரவு"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3312,8 +3311,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "ஆங்"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL வினவல்"
@@ -3323,144 +3322,144 @@ msgstr "SQL வினவல்"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL சொன்னது:"
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP குறிமுறை உருவாக்கு"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "புதுப்பி"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "வினாவிற்கான உன்வரிசை மாற்றப்பகுதி "
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "உள்வரிசை"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "ஆரம்பம்"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "முந்தைய"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "அடுத்து"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "முடிவு"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "உனது கணினியை உலாவு"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "நிறைவேற்று"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "அச்சிடு"
@@ -3544,68 +3543,68 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3624,7 +3623,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3905,7 +3904,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr ""
@@ -4004,7 +4003,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4126,8 +4125,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
@@ -4546,108 +4545,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4655,434 +4658,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5091,352 +5094,352 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "வினவல் பெட்டியை மறை"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5444,28 +5447,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5475,78 +5478,78 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5554,59 +5557,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5627,82 +5630,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5722,21 +5725,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5798,7 +5801,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -5950,26 +5953,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version"
msgid "committed on %1$s by %2$s"
msgstr "பதிப்பை உருவாக்கு"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version"
msgid "authored on %1$s by %2$s"
@@ -6638,18 +6641,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6853,15 +6855,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6954,7 +6948,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7309,7 +7303,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7406,10 +7400,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7468,7 +7462,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7506,8 +7500,8 @@ msgid "Edit event"
msgstr "புதிய பயனாளரை சேர்க்க"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7557,7 +7551,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7613,7 +7607,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7688,57 +7682,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -7925,7 +7919,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -8024,12 +8018,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8075,7 +8069,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8084,11 +8078,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8174,12 +8168,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8187,36 +8181,36 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8224,77 +8218,77 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s பின்"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s களத்தை சேர்க்க"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have added a new user."
msgid "You have to add at least one column."
msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "தேடு"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr ""
@@ -8416,11 +8410,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8430,8 +8424,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8591,16 +8585,20 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+msgid "Filter databases by name"
+msgstr ""
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr ""
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -9710,7 +9708,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -10797,37 +10795,37 @@ msgstr "வழுக்களை நிராகரி"
msgid "Show form"
msgstr "படிவத்தை காட்டு"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "புதிய நிலையான பதிப்புகள் ஒன்றும் இல்லை "
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10836,39 +10834,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -10876,21 +10874,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -10899,7 +10897,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -10909,37 +10907,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -10949,8 +10947,8 @@ msgstr ""
msgid "Wrong data"
msgstr "தரவு இல்லை"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -10980,21 +10978,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "சிட்டை"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11122,7 +11128,7 @@ msgstr "Y மதிப்புக்கள்:"
msgid "Table %s already exists!"
msgstr "%s இந்த அட்டவணை ஏற்கனவே உள்ளது!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "அட்டவணை %1$s உருவாக்கபட்டது."
@@ -11327,45 +11333,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "அட்டவணைகளை காட்டு"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "பாவனையளவு"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "பயனுடைய"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "மாறா"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "இறக்காற்றல்"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "நிரல் நீளம்"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "நிரல் அளவு"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11656,27 +11662,27 @@ msgstr ""
msgid "Create version"
msgstr "பதிப்பை உருவாக்கு"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "எப்படி பயன்படுத்துவது"
diff --git a/po/te.po b/po/te.po
index c4604970e6..520d42ac79 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,16 +6,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-09 02:43+0200\n"
-"Last-Translator: వీవెన్ \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:16+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: Telugu \n"
"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.4\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -23,11 +23,11 @@ msgid "Show all"
msgstr "అన్నీ చూపించు"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "పుట సంఖ్య:"
@@ -40,30 +40,30 @@ msgstr ""
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "శోధించు"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "శోధించు"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "వెళ్ళు"
@@ -108,11 +108,11 @@ msgstr ""
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "డేటాబేస్ వ్యాఖ్య:"
+msgstr "డేటాబేస్ వ్యాఖ్య: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "పట్టిక వ్యాఖ్యలు"
@@ -124,14 +124,14 @@ msgstr "పట్టిక వ్యాఖ్యలు"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "వరుస"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "వరుస"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "రకం"
@@ -156,9 +156,9 @@ msgstr "రకం"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr ""
@@ -168,7 +168,7 @@ msgstr ""
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "అప్రమేయం"
@@ -177,18 +177,18 @@ msgstr "అప్రమేయం"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr ""
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "వ్యాఖ్యలు"
@@ -199,11 +199,11 @@ msgstr "వ్యాఖ్యలు"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "కాదు"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "అవును"
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు"
@@ -327,8 +327,8 @@ msgstr ""
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -346,8 +346,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr ""
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -357,46 +357,45 @@ msgstr ""
msgid "Table"
msgstr "పట్టిక"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr ""
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "పరిమాణం"
# మొదటి అనువాదము
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "వాడుకలో ఉన్నది"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "సృష్టి"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "చివరి మార్పు"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "చివరి చూపు"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -489,13 +488,13 @@ msgstr "పట్టికల్ని వాడు"
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "క్వెరీ ని సమర్పించు"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "యాక్సెస్ నిరోధించడమైనది"
@@ -529,8 +528,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -609,11 +608,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -626,7 +625,7 @@ msgstr ""
# మొదటి అనువాదము
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "చూపుము"
@@ -672,7 +671,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -681,18 +680,19 @@ msgid "Export"
msgstr "ఎగుమతి"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr ""
# మొదటి అనువాదము
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "ఖాళీ"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -738,15 +738,14 @@ msgstr ""
# మొదటి అనువాదము
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "డేటాబేస్"
@@ -764,7 +763,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "స్థితి"
@@ -958,13 +957,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -987,7 +986,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1009,8 +1008,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1132,9 +1131,9 @@ msgid "Close"
msgstr "మూసివేయి"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "మార్చు"
@@ -1158,7 +1157,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "మొత్తం"
@@ -1169,12 +1168,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1259,13 +1258,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "మెబై"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "కిబై"
@@ -1327,27 +1326,27 @@ msgid "Connections"
msgstr "అనుసంధానాలు"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "బై"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "గిబై"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "టెబై"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "పిబై"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "ఎబై"
@@ -1394,9 +1393,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "ఏమీలేదు"
@@ -1588,7 +1587,7 @@ msgstr ""
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "సమయం"
@@ -1949,7 +1948,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1964,7 +1963,7 @@ msgid "Show search criteria"
msgstr ""
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2143,7 +2142,7 @@ msgstr "సంకేతపదాన్ని మార్చు"
msgid "More"
msgstr "మరిన్ని"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2234,63 +2233,63 @@ msgid "December"
msgstr "డిసెంబర్"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "జన"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "ఫిబ్ర"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "మార్చి"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "ఏప్రి"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "మే"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "జూన్"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "జూలై"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "ఆగ"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "సెప్టె"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "అక్టో"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "నవం"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "డిసెం"
@@ -2331,32 +2330,32 @@ msgid "Sun"
msgstr "ఆది"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "సోమ"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "మంగళ"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "బుధ"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "గురు"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "శుక్ర"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "శని"
@@ -2498,11 +2497,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2510,47 +2509,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2564,7 +2563,7 @@ msgstr ""
msgid "Indexes"
msgstr ""
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2600,46 +2599,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr ""
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "నిర్మాణాకృతి"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2720,27 +2719,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "పొరపాటు"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2789,52 +2788,52 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
# మొదటి అనువాదము
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Page has been created"
msgid "Table %1$s has been renamed to %2$s."
msgstr "పుటను సృష్టించడమైనది"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2842,17 +2841,17 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
# మొదటి అనువాదము
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "తీసుకొనుము"
@@ -2904,7 +2903,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2945,13 +2944,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "More settings"
msgid "A date, supported range is %1$s to %2$s"
msgstr "మరిన్ని అమరికలు"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2962,7 +2961,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "More settings"
msgid "A time, range is %1$s to %2$s"
@@ -2980,7 +2979,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2993,7 +2992,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3093,75 +3092,75 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "పుటని సృష్టించు"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr ""
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "మొత్తం"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3228,20 +3227,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3287,18 +3286,18 @@ msgstr "పట్టికలు"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3404,8 +3403,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr ""
@@ -3415,82 +3414,82 @@ msgstr ""
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "ఆది"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
# మొదటి అనువాదము
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3499,7 +3498,7 @@ msgid "Begin"
msgstr "మొదలు"
# మొదటి అనువాదము
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3509,7 +3508,7 @@ msgid "Previous"
msgstr "క్రితము"
# మొదటి అనువాదము
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3518,7 +3517,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "తదుపరి"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3526,44 +3525,44 @@ msgctxt "Last page"
msgid "End"
msgstr "ముగింపు"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "ముద్రించు"
@@ -3651,68 +3650,68 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "తప్పుడు విలువ"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "విలువ తప్పనిసరిగా %s కి సమానంగా లేదా తక్కువగా ఉండాలి"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "అందుబాటులో లేదు"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "గరిష్ఠం %s"
@@ -3731,7 +3730,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4013,7 +4012,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr ""
@@ -4112,7 +4111,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4234,8 +4233,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
@@ -4657,108 +4656,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4766,434 +4769,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "గరిష్ఠ పట్టికలు"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "సహజ క్రమం"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "ఉపయోగించకపోతే ఖాళీగా వదిలేయండి"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "అనుసంధాన రకం"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5202,28 +5205,28 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5231,333 +5234,333 @@ msgid ""
msgstr ""
# మొదటి అనువాదము
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "డేటాబేస్"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "User preferences"
msgid "UI preferences table"
msgstr "వాడుకరి అభిరుచులు"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "మరిన్ని చర్యలను చూపించు"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Show more actions"
msgid "Show display direction"
msgstr "మరిన్ని చర్యలను చూపించు"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
# మొదటి అనువాదము
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show"
msgid "Show hint"
msgstr "చూపించు"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "గణాంకాలను చూపించు"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5565,28 +5568,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5596,78 +5599,78 @@ msgstr ""
msgid "Password"
msgstr "సంకేతపదం"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "వాడుకరిపేరు"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Table comments"
msgid "Textarea columns"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "అప్రమేయ శీర్షిక"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5675,59 +5678,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5750,82 +5753,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "మైక్రోసాఫ్ట్ వర్డ్ 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "తప్పుడు ఐపీ చిరునామా: %s"
@@ -5846,21 +5849,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "వివరాలు..."
@@ -5927,7 +5930,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "పేరు"
@@ -6080,26 +6083,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "More settings"
msgid "committed on %1$s by %2$s"
msgstr "మరిన్ని అమరికలు"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "More settings"
msgid "authored on %1$s by %2$s"
@@ -6779,18 +6782,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6998,15 +7000,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7102,7 +7096,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "పట్టిక పేరు"
@@ -7469,7 +7463,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7566,10 +7560,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "విలువ"
@@ -7629,7 +7623,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7670,8 +7664,8 @@ msgid "Edit event"
msgstr "క్రొత్త వాడుకరిని చేర్చు"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7731,7 +7725,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7787,7 +7781,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7874,57 +7868,57 @@ msgstr "భద్రత"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -8123,7 +8117,7 @@ msgstr "విషయ సూచిక"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -8221,12 +8215,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "తెలియని భాష: %1$s."
@@ -8272,7 +8266,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8283,11 +8277,11 @@ msgstr ""
msgid "Columns"
msgstr "వ్యాఖ్యలు"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8373,12 +8367,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8386,36 +8380,36 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Table comments"
msgid "Move column"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8423,81 +8417,81 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "ఏమీలేదు"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "పూర్తిపాఠ్యం"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
# మొదటి అనువాదము
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s మార్లు తరువాత"
# మొదటి అనువాదము
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add into comments"
msgid "Add %s column(s)"
msgstr "స్పందనలకు చేర్చు"
# మొదటి అనువాదము
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have added a new user."
msgid "You have to add at least one column."
msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "శోధించు"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr ""
@@ -8623,13 +8617,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Server configuration"
msgid "Could not save configuration"
msgstr "సేవకి స్వరూపణం"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8639,8 +8633,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8802,19 +8796,25 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Table name"
+msgid "Filter databases by name"
+msgstr "పట్టిక పేరు"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Table name"
msgid "Filter tables by name"
msgstr "పట్టిక పేరు"
# మొదటి అనువాదము
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "పట్టికను సృష్టించు"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -8968,7 +8968,7 @@ msgstr "పుటని సృష్టించు"
#: pmd_pdf.php:129
msgid "New page name: "
-msgstr "కొత్త పుట పేరు:"
+msgstr "కొత్త పుట పేరు: "
#: pmd_pdf.php:132
msgid "Export/Import to scale"
@@ -9955,7 +9955,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -11067,37 +11067,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11106,39 +11106,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11146,21 +11146,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11169,7 +11169,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11179,37 +11179,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11219,8 +11219,8 @@ msgstr ""
msgid "Wrong data"
msgstr "భోగట్టా"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11250,21 +11250,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11398,7 +11406,7 @@ msgstr "విలువ"
msgid "Table %s already exists!"
msgstr "%s అనే పట్టిక ఇప్పటికే ఉంది!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11608,45 +11616,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show all"
msgid "Showing tables"
msgstr "అన్నీ చూపించు"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "వాడుక"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "వరుసల గణాంకాలు"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11943,27 +11951,27 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/th.po b/po/th.po
index 144326d5c4..aecc4a0906 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-04-21 15:20+0200\n"
"Last-Translator: Setthawut Sawaengkit \n"
"Language-Team: thai \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "แสดงทั้งหมด"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "หมายเลขหน้า:"
@@ -38,30 +38,30 @@ msgstr ""
"หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "ค้นหา"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "ค้นหา"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "ลงมือ"
@@ -109,8 +109,8 @@ msgid "Database comment: "
msgstr "หมายเหตุของฐานข้อมูล: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "หมายเหตุของตาราง"
@@ -121,14 +121,14 @@ msgstr "หมายเหตุของตาราง"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "สดมภ์"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -136,12 +136,12 @@ msgstr "สดมภ์"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "ชนิด"
@@ -153,9 +153,9 @@ msgstr "ชนิด"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "ว่างเปล่า (null)"
@@ -165,7 +165,7 @@ msgstr "ว่างเปล่า (null)"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "ค่าปริยาย"
@@ -174,18 +174,18 @@ msgstr "ค่าปริยาย"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "เชื่อมไปยัง"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "หมายเหตุ"
@@ -196,11 +196,11 @@ msgstr "หมายเหตุ"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,12 +218,12 @@ msgstr "ไม่"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -233,8 +233,8 @@ msgstr "ใช่"
msgid "View dump (schema) of database"
msgstr "ดูโครงสร้างของฐานข้อมูล"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "ไม่พบตารางใดๆ ในฐานข้อมูล"
@@ -321,8 +321,8 @@ msgstr "สลับไปยังฐานข้อมูลที่ถูก
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -340,8 +340,8 @@ msgstr "การจัดเก็บการตั้งค่าของ ph
msgid "Edit or export relational schema"
msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -351,45 +351,44 @@ msgstr "แก้ไข หรือส่งออก รีเลชันแ
msgid "Table"
msgstr "ตาราง"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "แถว"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "ขนาด"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "ใช้อยู่"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "สร้างเมื่อ"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -477,13 +476,13 @@ msgstr "ใช้ตาราง"
msgid "SQL query on database %s :"
msgstr "คำค้นบนฐานข้อมูล %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "ประมวลผลคำค้น"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "ไม่อนุญาตให้ใช้งาน"
@@ -518,8 +517,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "เปิดดู"
@@ -594,11 +593,11 @@ msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแ
msgid "Table %s has been dropped"
msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "การติดตามเริ่มทำงานแล้ว"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "หยุดการติดตามแล้ว"
@@ -610,7 +609,7 @@ msgid ""
msgstr "การแสดงผลนี้แสดงเพียงจำนวนข้อมูลเท่านี้, ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "ตารางจำลอง (View)"
@@ -655,7 +654,7 @@ msgstr "ตรวจสอบตารางที่มี overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -664,17 +663,18 @@ msgid "Export"
msgstr "ส่งออก"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "แสดง"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "ลบข้อมูล"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -717,15 +717,14 @@ msgid "Tracked tables"
msgstr "ตารางที่ถูกติดตาม"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "ฐานข้อมูล"
@@ -743,7 +742,7 @@ msgstr "ปรับปรุงแล้ว"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "สถานะ"
@@ -930,13 +929,13 @@ msgstr "แสดงบุ๊คมาร์ค"
msgid "The bookmark has been deleted."
msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว"
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "อ่านไฟล์ไม่ได้"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -964,7 +963,7 @@ msgstr "ไม่สามารถแปลงไฟล์ข้อมูลช
msgid "Could not load import plugins, please check your installation!"
msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น"
@@ -988,8 +987,8 @@ msgstr ""
"ชุดข้อมูลที่นำเข้าล่าสุดไม่ได้สามารถนำเข้าได้ หมายความว่า phpMyAdmin ไม่สามารถนำเข้าได้ทัน "
"ตามเวลารันสูงสุดที่กำหนดใน PHP"
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1099,9 +1098,9 @@ msgid "Close"
msgstr "ปิด"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "แก้ไข"
@@ -1125,7 +1124,7 @@ msgstr "ข้อมูลคงที่"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "รวม"
@@ -1136,12 +1135,12 @@ msgid "Other"
msgstr "อื่นๆ"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1222,13 +1221,13 @@ msgid "System swap"
msgstr "หน่วยความจำ swap ของระบบ"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "เมกกะไบต์"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "กิโลไบต์"
@@ -1286,27 +1285,27 @@ msgid "Connections"
msgstr "การเชื่อมต่อ"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "ไบต์"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "กิกะไบต์"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "เทอราไบต์"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "เพตตะไบต์"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "เอกซะไบต์"
@@ -1346,9 +1345,9 @@ msgstr "กรุณาเพิ่มค่าตัวแปรอย่าง
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "ไม่มี"
@@ -1529,7 +1528,7 @@ msgstr "อธิบายผลคำสั่ง"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "เวลา"
@@ -1846,7 +1845,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1860,7 +1859,7 @@ msgstr "ซ่อนหลักในการค้นหา"
msgid "Show search criteria"
msgstr "แสดงหลักการค้นหา"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "ค้นหาแบบ Zoom"
@@ -2029,7 +2028,7 @@ msgstr "เปลี่ยนรหัสผ่าน"
msgid "More"
msgstr "เพิ่มเติม"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2114,63 +2113,63 @@ msgid "December"
msgstr "ธันวาคม"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "ม.ค."
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "ก.พ."
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "มี.ค."
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "เม.ย."
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "พ.ค."
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "มิ.ย."
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "ก.ค."
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "ส.ค."
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "ก.ย."
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "ต.ค."
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "พ.ย."
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "ธ.ค."
@@ -2211,32 +2210,32 @@ msgid "Sun"
msgstr "อา."
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "จ."
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "อ."
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "พ."
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "พฤ."
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "ศ."
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "ส."
@@ -2377,11 +2376,11 @@ msgstr "ไฟล์ตั้งค่า %s ไม่สามารถอ่
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "สิทธิสำหรับไฟล์ตั้งค่าไม่ถูกต้อง ที่ถูกต้องจะต้องแก้ไขได้เฉพาะ root"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "ขนาดตัวอักษร"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "มีข้อความผิดพลาดจำนวนมาก บางส่วนจึงซ่อนไว้ไม่แสดง"
@@ -2389,37 +2388,37 @@ msgstr "มีข้อความผิดพลาดจำนวนมาก
msgid "File was not an uploaded file."
msgstr "ไฟล์ไม่ได้ถูกอัพโหลด"
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "ไฟล์ที่อัพโหลดขนาดเกินที่กำหนด"
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "จำนวนไฟล์ที่อัพโหลดเกินจำนวนสูงสุดที่กำหนด"
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "ไฟล์ที่ถูกอัพโหลดมาไม่ครบ"
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "ไม่พบแฟ้มชั่วคราว"
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "ไม่สามารถเขียนไฟล์ลงดิสได้"
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "ไม่รองรับไฟล์ประเภทนี้"
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "ไม่ทราบข้อผิดพลาดของไฟล์ที่จะอัพโหลด"
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2427,11 +2426,11 @@ msgstr ""
"มีข้อผิดพลาดขนาดย้ายไฟล์อัพหลด กรุณาดู [a@./Documentation.html#faq1_11@Documentation]"
"FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "ข้อผิดพลาดขณะเคลื่อนย้ายไฟล์อัพโหลด"
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "ไม่สามารถอ่านไฟล์อัพโหลด"
@@ -2445,7 +2444,7 @@ msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!"
msgid "Indexes"
msgstr "ดัชนี"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2481,46 +2480,46 @@ msgid ""
"removed."
msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอันเดียวกัน ควรจะลบออกไปอันหนึ่ง"
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "ฐานข้อมูล"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "เซิร์ฟเวอร์"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "โครงสร้าง"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "แทรก"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "กระบวนการ"
@@ -2602,25 +2601,25 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "ผิดพลาด"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d ระเบียนได้รับผล"
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d ระเบียนถูกลบ"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2662,44 +2661,44 @@ msgstr "%s ถูกปิดบน MySQL Server"
msgid "This MySQL server does not support the %s storage engine."
msgstr "MySQL ไม่รองรับ %s"
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "ไม่ทราบสถานะตาราง: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "ค้นหาในฐานข้อมูล"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
msgid "Target database `%s` was not found!"
msgstr "ค้นหาในฐานข้อมูล"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "ชื่อฐานข้อมูลไม่ถูกต้อง"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "ชื่อตารางไม่ถูกต้อง"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "มีข้อผิดพลาดจากเปลี่ยนชื่อตาราง %1$s เป็น %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "ไม่สามารถบันทึกการกำหนดลักษณะตาราง UI"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2708,7 +2707,7 @@ msgstr ""
"มีปัญหาในการล้างข้อมูลการตั้งค่าตาราง UL (ดูได้ที่ $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2716,16 +2715,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "ไม่สามารถแสดงตัวอย่างได้"
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2777,7 +2776,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2818,12 +2817,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2834,7 +2833,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2852,7 +2851,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2865,7 +2864,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2964,77 +2963,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "สร้างดัชนีใหม่"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "แถวข้อความ"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "รวม"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3102,20 +3101,20 @@ msgstr "ตัวเลือกเซิร์ฟเวอร์"
msgid "Cookies must be enabled past this point."
msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้"
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "ไม่สามารถล็อกอินเข้าเซิร์ฟเวอร์ MySQL ได้"
@@ -3159,18 +3158,18 @@ msgstr "ตาราง"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "ข้อมูล"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "เกินความจำเป็น"
@@ -3280,8 +3279,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "คำค้น SQL"
@@ -3291,83 +3290,83 @@ msgstr "คำค้น SQL"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL แสดง: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "อธิบาย SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "ไม่ต้องอธิบาย SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "ไม่เอาโค้ด PHP"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "สร้างโค้ด PHP"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "เรียกใหม่"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "ไม่ต้องตรวจสอบ SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "ตรวจสอบ SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "อา."
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y %Rน."
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "เพิ่มฟิลด์ใหม่"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3375,7 +3374,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "จุดเริ่มต้น"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3384,7 +3383,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "ก่อนหน้า"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3393,7 +3392,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "ต่อไป"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3401,45 +3400,45 @@ msgctxt "Last page"
msgid "End"
msgstr "ท้ายสุด"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "กระโดดไปที่ฐานข้อมูล "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "พิมพ์"
@@ -3532,72 +3531,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "ตัวแปร"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "ไม่พบลิงก์"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3616,7 +3615,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3908,7 +3907,7 @@ msgid "Character set of the file"
msgstr "ชุดอักขระของไฟล์ (character set):"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "รูปแบบ"
@@ -4022,7 +4021,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-type"
@@ -4153,8 +4152,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "ข้อมูล CSV (คั่นด้วยเครื่องหมายลูกน้ำ \",\")"
@@ -4590,110 +4589,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "เลิกติดตามตาราง"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4701,452 +4704,452 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "ขีดจำกัดของทรัพยากร"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "เรียงค่าในตารางตาม"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "หน้าต่างคำค้น"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "หน้าต่างคำค้น"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "หน้าต่างคำค้น"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "เปลี่ยนชื่อตารางเป็น"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "การเชื่อมต่อ"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "โฮสต์ใดๆ"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "ไม่มีตาราง"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "จัดระเบียบตาราง"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "ไม่มีฐานข้อมูล"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "ตัวเลือกเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5155,373 +5158,373 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "ฐานข้อมูล"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "ตัวเลือกเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "วิเคราะห์ตาราง"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "ซ่อมแซมตาราง"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "ตัวเลือกเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "แสดงหมายเหตุของคอลัมน์"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "จัดระเบียบตาราง"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "คำสั่ง"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
msgid "Automatically create versions"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "แสดงข้อมูลของ PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "สถิติฐานข้อมูล"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
msgid "Show field types"
msgstr "แสดงตาราง"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "แสดงกริด"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "แสดงคำค้นแบบเต็ม"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "คำค้น SQL"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "สถิติของแถว"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5529,28 +5532,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5560,81 +5563,81 @@ msgstr ""
msgid "Password"
msgstr "รหัสผ่าน"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "ชื่อผู้ใช้:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ค่าปริยาย"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5642,59 +5645,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5715,83 +5718,83 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
#, fuzzy
msgid "Database export options"
msgstr "สถิติฐานข้อมูล"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "ข้อมูล CSV สำหรับไมโครซอฟต์เอ็กเซล"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5811,23 +5814,23 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5892,7 +5895,7 @@ msgstr "เริ่มหน้าใหม่"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "ชื่อ"
@@ -6078,25 +6081,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "รุ่นของเซิร์ฟเวอร์"
@@ -6810,18 +6813,17 @@ msgid "Display MIME types"
msgstr "MIME-types ที่มีอยู่"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "โฮสต์"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "เวลาในการสร้าง"
@@ -7032,15 +7034,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "ผลลัพธ์ SQL"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "สร้างโดย"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)."
@@ -7135,7 +7129,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7499,7 +7493,7 @@ msgstr "การสร้างเอกสาร PDF"
msgid "Displaying Column Comments"
msgstr "แสดงหมายเหตุของคอลัมน์"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
#, fuzzy
msgid "Browser transformation"
@@ -7600,10 +7594,10 @@ msgid "Variable"
msgstr "ตัวแปร"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "ค่า"
@@ -7663,7 +7657,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7701,8 +7695,8 @@ msgid "Edit event"
msgstr "ถูกส่ง"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -7762,7 +7756,7 @@ msgstr "คำสั่ง INSERT เต็มรูปแบบ"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7818,7 +7812,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7904,56 +7898,56 @@ msgstr "ชนิดคำค้น"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "ฟังก์ชั่น"
@@ -8151,7 +8145,7 @@ msgstr "สารบัญ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "แอตทริบิวต์"
@@ -8258,12 +8252,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8313,7 +8307,7 @@ msgstr "ประมวลผลคำค้นบนฐานข้อมูล
msgid "Run SQL query/queries on database %s"
msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8325,11 +8319,11 @@ msgstr "ปฏิทิน"
msgid "Columns"
msgstr "ชื่อคอลัมน์"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "จดคำค้นนี้ไว้"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8427,13 +8421,13 @@ msgstr ""
"ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น "
"ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว"
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "การติดตามเริ่มทำงานแล้ว"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8450,36 +8444,36 @@ msgstr ""
">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") "
"เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')"
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "ดัชนี"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "ตัวเลือกการแปลง"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
#, fuzzy
msgid ""
"Please enter the values for transformation options using this format: 'a', "
@@ -8491,79 +8485,79 @@ msgstr ""
">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") "
"เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')"
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "ไม่มี"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "ไพรมารี"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "ข้อความเต็ม (fulltext)"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "หลัง %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
msgid "Add %s column(s)"
msgstr "เพิ่มฟิลด์ใหม่"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
#, fuzzy
msgid "Operator"
msgstr "กระบวนการ"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "ค้นหา"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8697,11 +8691,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8711,8 +8705,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8879,19 +8873,25 @@ msgstr ""
msgid "No databases"
msgstr "ไม่มีฐานข้อมูล"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "เรียงค่าในตารางตาม"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "เรียงค่าในตารางตาม"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "เริ่มหน้าใหม่"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "โปรดเลือกฐานข้อมูล"
@@ -10070,7 +10070,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "คำสั่ง"
@@ -11181,37 +11181,37 @@ msgstr ""
msgid "Show form"
msgstr "แสดงสี"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11220,39 +11220,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11260,21 +11260,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11283,7 +11283,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11293,37 +11293,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11333,8 +11333,8 @@ msgstr ""
msgid "Wrong data"
msgstr "ไม่มีฐานข้อมูล"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11368,21 +11368,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "ตรวจสอบ SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "ผลลัพธ์ SQL"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "สร้างโดย"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "ป้ายชื่อ"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11516,7 +11524,7 @@ msgstr "ค่า"
msgid "Table %s already exists!"
msgstr "มีผู้ใช้ %s อยู่แล้ว!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว"
@@ -11731,45 +11739,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "แสดงตาราง"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "เนื้อที่ที่ใช้"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "ใช้งาน"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "มีผล"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "สถิติของแถว"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "ไม่คงที่"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "ความยาวแถว"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "ขนาดแถว "
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12079,30 +12087,30 @@ msgstr ""
msgid "Create version"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "คำค้น SQL"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/tk.po b/po/tk.po
index e0a5357537..9bd6f92b70 100644
--- a/po/tk.po
+++ b/po/tk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-03-23 10:42+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Turkmen \n"
@@ -24,11 +24,11 @@ msgid "Show all"
msgstr "Hemmesini görkez"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Sahypa belgisi:"
@@ -43,30 +43,30 @@ msgstr ""
"täzelemäni saklaýandyr."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Gözle"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -76,7 +76,7 @@ msgstr "Gözle"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Git"
@@ -116,8 +116,8 @@ msgid "Database comment: "
msgstr ""
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr ""
@@ -128,14 +128,14 @@ msgstr ""
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr ""
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -143,12 +143,12 @@ msgstr ""
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr ""
@@ -160,9 +160,9 @@ msgstr ""
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr ""
@@ -172,7 +172,7 @@ msgstr ""
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr ""
@@ -181,18 +181,18 @@ msgstr ""
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr ""
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr ""
@@ -203,11 +203,11 @@ msgstr ""
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -225,12 +225,12 @@ msgstr ""
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -240,8 +240,8 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr ""
@@ -328,8 +328,8 @@ msgstr ""
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -347,8 +347,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr ""
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -358,45 +358,44 @@ msgstr ""
msgid "Table"
msgstr ""
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr ""
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr ""
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr ""
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr ""
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr ""
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr ""
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -485,13 +484,13 @@ msgstr ""
msgid "SQL query on database %s :"
msgstr ""
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr ""
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr ""
@@ -525,8 +524,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -602,11 +601,11 @@ msgstr ""
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -618,7 +617,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr ""
@@ -663,7 +662,7 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -672,17 +671,18 @@ msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -725,15 +725,14 @@ msgid "Tracked tables"
msgstr ""
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -751,7 +750,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -936,13 +935,13 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr ""
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -965,7 +964,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -987,8 +986,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1097,9 +1096,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
@@ -1123,7 +1122,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
@@ -1134,12 +1133,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ""
@@ -1218,13 +1217,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr ""
@@ -1282,27 +1281,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr ""
@@ -1342,9 +1341,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr ""
@@ -1515,7 +1514,7 @@ msgstr ""
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr ""
@@ -1818,7 +1817,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1832,7 +1831,7 @@ msgstr ""
msgid "Show search criteria"
msgstr ""
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr ""
@@ -1996,7 +1995,7 @@ msgstr ""
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2081,63 +2080,63 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr ""
@@ -2175,32 +2174,32 @@ msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr ""
@@ -2339,11 +2338,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2351,47 +2350,47 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2405,7 +2404,7 @@ msgstr ""
msgid "Indexes"
msgstr ""
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2441,46 +2440,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr ""
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2559,27 +2558,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2622,51 +2621,51 @@ msgstr ""
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr ""
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr ""
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Database %1$s has been created."
msgid "Table %1$s has been renamed to %2$s."
msgstr "%1$s maglumatlar ulgamy döredildi"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2674,16 +2673,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr ""
@@ -2735,7 +2734,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2776,12 +2775,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr ""
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2792,7 +2791,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr ""
@@ -2809,7 +2808,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2822,7 +2821,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2919,71 +2918,71 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr ""
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr ""
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr ""
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3049,20 +3048,20 @@ msgstr ""
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr ""
@@ -3106,18 +3105,18 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr ""
@@ -3220,8 +3219,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr ""
@@ -3231,144 +3230,144 @@ msgstr ""
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr ""
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr ""
@@ -3452,68 +3451,68 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr ""
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3532,7 +3531,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -3809,7 +3808,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr ""
@@ -3908,7 +3907,7 @@ msgstr ""
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr ""
@@ -4030,8 +4029,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
@@ -4438,108 +4437,112 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr ""
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4547,434 +4550,434 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr ""
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -4983,350 +4986,350 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr ""
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr ""
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr ""
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr ""
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5334,28 +5337,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5365,76 +5368,76 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr ""
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5442,59 +5445,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5515,82 +5518,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5610,21 +5613,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5686,7 +5689,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -5838,25 +5841,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr ""
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr ""
@@ -6516,18 +6519,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -6725,15 +6727,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6825,7 +6819,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7176,7 +7170,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7273,10 +7267,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7335,7 +7329,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7371,8 +7365,8 @@ msgid "Edit event"
msgstr ""
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7422,7 +7416,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7476,7 +7470,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
@@ -7547,57 +7541,57 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -7772,7 +7766,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -7869,12 +7863,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
-msgstr ""
+msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -7920,7 +7914,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -7929,11 +7923,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8019,12 +8013,12 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8032,34 +8026,34 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr ""
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8067,71 +8061,71 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr ""
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr ""
@@ -8253,11 +8247,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8267,8 +8261,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8418,16 +8412,20 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+msgid "Filter databases by name"
+msgstr ""
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr ""
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -9525,7 +9523,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -10606,37 +10604,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -10645,39 +10643,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -10685,21 +10683,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -10708,7 +10706,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -10718,37 +10716,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -10756,8 +10754,8 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -10787,21 +10785,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr ""
@@ -10917,7 +10923,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11116,43 +11122,43 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr ""
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11437,27 +11443,27 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index d8b5c6d538..be6127f171 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-05-09 14:48+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 11:19+0200\n"
"Last-Translator: Burak Yavuz \n"
"Language-Team: turkish \n"
"Language: tr\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 0.10\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Tümünü göster"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Sayfa numarası:"
@@ -39,30 +39,30 @@ msgstr ""
"güncellemeleri engellemek için yapılandırılmıştır."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Ara"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Ara"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Git"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "Veritabanı yorumu: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tablo yorumları"
@@ -124,14 +124,14 @@ msgstr "Tablo yorumları"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Sütun"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Sütun"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Türü"
@@ -156,9 +156,9 @@ msgstr "Türü"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Boş"
@@ -168,7 +168,7 @@ msgstr "Boş"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Varsayılan"
@@ -177,18 +177,18 @@ msgstr "Varsayılan"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Bağlantı verilen:"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Yorumlar"
@@ -199,11 +199,11 @@ msgstr "Yorumlar"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Hayır"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Evet"
msgid "View dump (schema) of database"
msgstr "Veritabanının dökümünü (şemasını) göster"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Veritabanında tablo bulunamadı."
@@ -322,8 +322,8 @@ msgstr "Kopyalanmış veritabanına geç"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -343,8 +343,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Bağlantılı şemayı dışa aktar veya düzenle"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -354,45 +354,44 @@ msgstr "Bağlantılı şemayı dışa aktar veya düzenle"
msgid "Table"
msgstr "Tablo"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Satır"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Boyut"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "kullanımda"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Oluşturma"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Son güncellenme"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Son kontrol"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -480,13 +479,13 @@ msgstr "Tabloları kullan"
msgid "SQL query on database %s :"
msgstr "%s veritabanındaki SQL sorgusu:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Sorguyu Gönder"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Erişim engellendi"
@@ -519,8 +518,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "%2$s tablosu içerisinde %1$s benzeşme"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Gözat"
@@ -595,11 +594,11 @@ msgstr "%s görünümü kaldırıldı"
msgid "Table %s has been dropped"
msgstr "%s tablosu kaldırıldı"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "İzleme aktif."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "İzleme aktif değil."
@@ -612,7 +611,7 @@ msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Görünüm"
@@ -657,7 +656,7 @@ msgstr "Ek yükü olan tabloları kontrol et"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -666,17 +665,18 @@ msgid "Export"
msgstr "Dışa Aktar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Baskı görünümü"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Boşalt"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -719,15 +719,14 @@ msgid "Tracked tables"
msgstr "İzlenen tablolar"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Veritabanı"
@@ -745,7 +744,7 @@ msgstr "Güncellendi"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Durum"
@@ -936,13 +935,13 @@ msgstr "Gösterilen işaret"
msgid "The bookmark has been deleted."
msgstr "İşaretleme silindi."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Dosya okunamadı"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -972,7 +971,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "İşaretleme %s oluşturuldu"
@@ -999,8 +998,8 @@ msgstr ""
"sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı "
"biteremeyeceği anlamına gelir."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1110,9 +1109,9 @@ msgid "Close"
msgstr "Kapat"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Düzenle"
@@ -1136,7 +1135,7 @@ msgstr "Sabit veri"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Toplam"
@@ -1147,12 +1146,12 @@ msgid "Other"
msgstr "Diğer"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1235,13 +1234,13 @@ msgid "System swap"
msgstr "Sistem takası"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1299,27 +1298,27 @@ msgid "Connections"
msgstr "Bağlantılar"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EiB"
@@ -1359,9 +1358,9 @@ msgstr "Lütfen diziye en az bir değişken ekleyin"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Yok"
@@ -1545,7 +1544,7 @@ msgstr "Çıktıyı açıkla"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Süre"
@@ -1857,7 +1856,7 @@ msgstr "%d geçerli bir satır sayısı değil."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1871,7 +1870,7 @@ msgstr "Arama kriterini gizle"
msgid "Show search criteria"
msgstr "Arama kriterini göster"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Odaklı Arama"
@@ -2050,7 +2049,7 @@ msgstr "Parola Değiştir"
msgid "More"
msgstr "Daha Fazla"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2137,63 +2136,63 @@ msgid "December"
msgstr "Aralık"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Oca"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Şub"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Nis"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Haz"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Tem"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Ağu"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Eyl"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Eki"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Ara"
@@ -2231,32 +2230,32 @@ msgid "Sun"
msgstr "Paz"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Ptesi"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Sal"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Çar"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Per"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Cum"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Ctesi"
@@ -2398,11 +2397,11 @@ msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
"Yapılandırma dosyasında yanlış izinler, herkesçe yazılabilir olmamalıdır!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Yazı Tipi boyutu"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Çok fazla hata mesajı, bazıları görüntülenmedi."
@@ -2410,12 +2409,12 @@ msgstr "Çok fazla hata mesajı, bazıları görüntülenmedi."
msgid "File was not an uploaded file."
msgstr "Dosya gönderilmiş bir dosya değil."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2423,27 +2422,27 @@ msgstr ""
"Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini "
"aşıyor."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Gönderilen dosya sadece kısmen gönderildi."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Eksik geçici klasör."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Dosyayı diske yazma başarısız."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Dosya gönderme uzantısından dolayı durduruldu."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Dosya göndermede bilinmeyen hata oldu."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2451,11 +2450,11 @@ msgstr ""
"Gönderilen dosyayı taşıma hatası, [a@./Documentation."
"html#faq1_11@Documentation]SSS 1.11[/a]'e bakın"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Gönderilmiş dosya taşınırken hata oldu."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Gönderilen dosya okunamıyor (taşınamadı)."
@@ -2469,7 +2468,7 @@ msgstr "Tanımlı indeks yok!"
msgid "Indexes"
msgstr "İndeksler"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2507,46 +2506,46 @@ msgstr ""
"İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün "
"olabilir."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Veritabanları"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Sunucu"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Yapı"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Ekle"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "İşlemler"
@@ -2625,25 +2624,25 @@ msgstr "Eklentiler"
msgid "Engines"
msgstr "Motorlar"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Hata"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d satır etkilendi."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d satır silindi."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2685,43 +2684,43 @@ msgstr "%s bu MySQL sunucusu için etkisizleştirildi."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "bilinmeyen tablo durumu: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr "Kaynak veritabanı `%s` bulunamadı!"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, php-format
msgid "Target database `%s` was not found!"
msgstr "Hedef veritabanı `%s` bulunamadı!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Geçersiz veritabanı"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Geçersiz tablo adı"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, php-format
msgid "Table %1$s has been renamed to %2$s."
msgstr "%1$s tablosu %2$s olarak yeniden adlandırıldı."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Tablo KA tercihleri kaydedilemedi"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2730,7 +2729,7 @@ msgstr ""
"Tablo KA tercihlerini temizleme başarısız ($cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s bakın)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2741,16 +2740,16 @@ msgstr ""
"yenilemenizden sonra kalıcı olmayacaktır. Eğer tablo yapısı değiştirilmişse "
"lütfen kontrol edin."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "%s teması için geçerli resim yolu bulunamadı!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Önizleme mevcut değil."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "Al"
@@ -2813,7 +2812,7 @@ msgstr ""
"9,223,372,036,854,775,807'ye kadardır, işaretsiz aralığı 0'dan "
"18,446,744,073,709,551,615'e kadardır"
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2867,12 +2866,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE için bir kod adı"
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Bir tarih, desteklenen aralık %1$s ile %2$s arası"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr "Bir tarih ve saat birleşimi, desteklenen aralık %1$s ile %2$s arası"
@@ -2886,7 +2885,7 @@ msgstr ""
"03:14:07\" UTC arası, devirden (\"1970-01-01 00:00:00\" UTC) bu yana saniye "
"sayısı olarak saklanır"
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
msgid "A time, range is %1$s to %2$s"
msgstr "Bir saat, aralığı %1$s ile %2$s arası"
@@ -2908,7 +2907,7 @@ msgstr ""
"Saklandığında belirlenmiş uzunluğa sağdan takviyeli boşluklu sabit uzunluk "
"(0-255, varsayılan 1) dizgisi"
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2925,7 +2924,7 @@ msgstr ""
"En fazla 255 (2^8 - 1) karakter uzunluğunda bir TEXT sütunu, bayt'larda "
"değerin uzunluğunu gösteren bir-bayt'lık bir ön ek ile saklanır"
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3043,35 +3042,32 @@ msgstr "Poligonlar topluluğu"
msgid "A collection of geometry objects of any type"
msgstr "Herhangi bir türün geometri nesneleri topluluğu"
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr "Sayısal"
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
-#| msgid "Both date and time."
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
msgctxt "date and time types"
msgid "Date and time"
msgstr "Tarih ve saat"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
-#| msgid "Linestring"
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
msgctxt "string types"
msgid "String"
msgstr "Dizgi"
-#: libraries/Types.class.php:668
-#| msgid "Spatial"
+#: libraries/Types.class.php:666
msgctxt "spatial types"
msgid "Spatial"
msgstr "Uzaysal"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
"4-bayt'lık bir tamsayı, aralığı -2,147,483,648'den 2,147,483,647'ye kadardır"
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
@@ -3079,23 +3075,23 @@ msgstr ""
"8-bayt'lık bir tamsayı, aralığı -9,223,372,036,854,775,808'den "
"9,223,372,036,854,775,807'ye kadardır"
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr "Sistemin varsayılan çift duyarlıklı kayan noktalı bir sayısı"
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr "True veya false"
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr "BIGINT NOT NULL AUTO_INCREMENT UNIQUE için bir kod adı"
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr "Evrensel Benzersiz Tanımlayıcıyı (UUID) saklar"
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
@@ -3103,7 +3099,7 @@ msgstr ""
"Bir zaman damgası, aralığı \"0001-01-01 00:00:00\" UTC ile \"9999-12-31 "
"23:59:59\" UTC arası; TIMESTAMP(6) mikro saniyeleri saklayabilir"
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
@@ -3111,7 +3107,7 @@ msgstr ""
"Değişken uzunlukta bir (0-65,535) dizgi, tüm karşılaştırmalar için binari "
"karşılaştırma kullanır"
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
@@ -3119,7 +3115,7 @@ msgstr ""
"En fazla 65,535 (2^16 - 1) bayt uzunluğunda bir BLOB sütunu, değerin "
"uzunluğunu gösteren dört-bayt'lık bir ön ek ile saklanır"
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr "Bir numaralandırma, tanımlanmış değerlerin listesinden seçilir"
@@ -3195,7 +3191,7 @@ msgstr ""
"Bu kısmı geçmek için tanımlama bilgileri (cookies) etkinleştirilmiş "
"olmalıdır."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3203,14 +3199,14 @@ msgstr ""
"Yapılandırma tarafından parolasız oturum açma yasaktır (AllowNoPassword'a "
"bakın)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s saniye içinde hiçbir işlem yapılmadı, lütfen yeniden oturum açın"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL sunucusuna oturum açılamıyor"
@@ -3254,18 +3250,18 @@ msgstr "Tablolar"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Veri"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Ek Yük"
@@ -3374,8 +3370,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL sorgusu"
@@ -3385,144 +3381,144 @@ msgstr "SQL sorgusu"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL çıktısı: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "SQL onaylayıcısına bağlanma başarısız oldu!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL'i açıkla"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL Açıklamasını atla"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP Kodsuz"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP Kodu oluştur"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Yenile"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL Onaylamayı atla"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL'i onayla"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Bu sorguyu sıralı düzenle"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Sıralı"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profil çıkart"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Paz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M:%S"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s gün, %s saat, %s dakika ve %s saniye"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Eksik parametreler:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Başlangıç"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Önceki"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Sonraki"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "Son"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" veritabanına git."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Değiştirmek için tıklayın"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Bilgisayarınıza gözat:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Web sunucusu gönderme dizininden %s seçin:"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Göndermek için hiç dosya yok"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Çalıştır"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Yazdır"
@@ -3606,68 +3602,68 @@ msgstr "yukarıdakinin ikisi birden"
msgid "neither of the above"
msgstr "yukarıdakinin hiçbiri"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Pozitif sayı değil"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Negatif olmayan sayı değil"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Geçerli bağlantı noktası numarası değil"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Yanlış değer"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Değer, %s değerinden az ya da eşit olmalıdır"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "%s için kayıp veri"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "kullanılamaz"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\", %s uzantısı gerektirir"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "içe aktarma çalışmayacak, eksik işlev (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "dışa aktarma çalışmayacak, eksik işlev (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL Onaylayıcı etkisizleştirildi"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP uzantısı bulunamadı"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "en fazla %s"
@@ -3686,7 +3682,7 @@ msgid "Set value: %s"
msgstr "Ayar değeri: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Varsayılan değeri geri yükle"
@@ -3992,7 +3988,7 @@ msgid "Character set of the file"
msgstr "Dosyanın karakter grubu"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Biçim"
@@ -4091,7 +4087,7 @@ msgstr "Etiket anahtarı"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME türü"
@@ -4215,8 +4211,8 @@ msgstr "Varsayılan seçenekleri özelleştirir"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4651,14 +4647,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Tablo süzgeci kutusunu görüntülemek için en az tablo sayısıdır"
#: libraries/config/messages.inc.php:281
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr ""
+"Veritabanı süzgeci kutusunu görüntülemek için en az veritabanı sayısıdır"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Veritabanlarını farklı ağaç seviyelerine ayıran dizgidir"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Veritabanı ağaç ayıracı"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4666,40 +4668,40 @@ msgstr ""
"Sadece sade sürümde; veritabanları ağaç içinde görüntülenir (aşağıda "
"tanımlanan ayıraçlar tarafından belirlenir)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Veritabanlarını ağaç içinde görüntüle"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
"Eğer tüm veritabanlarını bir kerede görmek isterseniz bunu etkisizleştirin"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Sade sürümü kullan"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "En fazla tablo ağacı derinliği"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Tabloları farklı ağaç seviyelerine ayıran dizgidir"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Tablo ağacı ayıracı"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "Rehber çerçevedeki logoyu işaret eden URL"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo bağlantısı URL'si"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4707,39 +4709,39 @@ msgstr ""
"Bağlantılı sayfayı ana pencerede ([kbd]main[/kbd]) veya yeni bir tanede "
"([kbd]new[/kbd]) açar"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo bağlantısı hedefi"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Fare imleci altında sunucuyu vurgula"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Vurgulamalar etkin"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"En fazla son kullanılan tablo sayısıdır; etkisizleştirmek için 0'a ayarlayın"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Son kullanılan tablolar"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Gözat görünümünde herhangi bir sayısal olmayan sütunda gösterilen en fazla "
"karakter sayısıdır"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Sütun karakterlerini sınırlandır"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4750,11 +4752,11 @@ msgstr ""
"bilgisini siler. Bunu FALSE'a ayarlamak çoklu sunuculara bağlandığınızda "
"diğer sunuculardan oturumu kapatmayı unutmanızı kolaylaştırır."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Oturum kapatmada tüm tanımlama bilgilerini sil"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4762,11 +4764,11 @@ msgstr ""
"Tanımlama bilgisi kimlik doğrulaması kipinde önceki açılan oturumun "
"hatırlanıp hatırlanmayacağını tanımlar"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Kullanıcı adını hatırla"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4778,52 +4780,52 @@ msgstr ""
"için tutulacağıdır, ve tarayıcı penceresini kapatır kapatmaz silinecektir. "
"Bu güvenli olmayan ortamlar için önerilir."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Oturum açma tanımlama bilgisi saklama"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
"Oturum açma tanımlama bilgisinin ne kadar (saniye cinsinden) geçerli "
"olacağını tanımlar"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Oturum açma tanımlama bilgisi geçerliliği"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "LONGTEXT sütunları için metin alanın iki katı boyutu"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEXT için en büyük metin alanı"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "SQL sorgusu görüntülendiğinde kullanılan en fazla karakter sayısıdır"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "En fazla görüntülenecek SQL uzunluğu"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Kullanıcılar yüksek değer ayarlayamazlar"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Sol çerçevede ve veritabanı listesinde görüntülenecek olan en fazla "
"veritabanı sayısıdır"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "En fazla veritabanı"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4833,19 +4835,19 @@ msgstr ""
"daha fazla satır içeriyorsa, "Önceki" ve "Sonraki" "
"bağlantıları gösterilecektir."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Görüntülemek için en fazla satır sayısı"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Tablo listesinde görüntülenecek olan en fazla tablo sayısıdır"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "En fazla tablo"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4853,11 +4855,11 @@ msgstr ""
"Eğer tanımlama bilgisi kimlik doğrulaması için mcrypt eksikse, gösterilen "
"varsayılan uyarıyı etkisizleştir"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt uyarısı"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4865,44 +4867,44 @@ msgstr ""
"Betiğe ayrılması için izin verilecek bayt sayısıdır, örn. [kbd]32M[/kbd] "
"(sınırsız için [kbd]0[/kbd])"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Bellek sınırı"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "Bunlar Düzenle, Kopyala ve Sil bağlantılarıdır"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "Tablo satır bağlantılarının nerede gösterileceği"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Tablo ve veritabanı adlarını sıralamak için doğal sıra kullan"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Doğal sıra"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Sadece simgeleri, sadece metni veya her ikisinide kullanır"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Sembolik rehber çubuğu"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"HTTP aktarımlarındaki arttırılmış hız için GZip çıktı arabellekleme kullanımı"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip çıktı arabellekleme"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4910,19 +4912,19 @@ msgstr ""
"[kbd]SMART[/kbd] - yani TIME, DATE, DATETIME ve TIMESTAMP türü sütunları "
"için büyükten küçüğe sıralama, aksi halde küçükten büyüğe sıralama"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Varsayılan sıralama düzeni"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "MySQL veritabanlarına sürekli bağlantı kullanımı"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Sürekli bağlantılar"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -4932,23 +4934,23 @@ msgstr ""
"biri bulunamazsa, veritabanı ayrıntıları Yapı sayfasında gösterilen "
"varsayılan uyarıyı etkisizleştir"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Eksik phpMyAdmin yapılandırma depolama tabloları"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Sembolik tablo işlemleri"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "BLOB ve BINARY sütunlarını düzenlemeye izin vermez"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "Binari sütunlarını koru"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4959,114 +4961,114 @@ msgstr ""
"geçmişini görüntülemek için bu, JS-yordamlarından yararlanır (pencerenin "
"kapatılmasıyla kaybolur)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Kalıcı sorgu geçmişi"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Geçmişte ne kadar sorgu tutulacağıdır"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Sorgu geçmişi uzunluğu"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Yeni bir sorgu penceresi açıldığında görüntülenen sekme"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Varsayılan sorgu penceresi sekmesi"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "Sorgu penceresi yüksekliği (piksel olarak)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Sorgu penceresi yüksekliği"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Sorgu penceresi genişliği (piksel olarak)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Sorgu penceresi genişliği"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "Karakter grubu dönüştürme için kullanılacak olan işlevleri seçin"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Kaydetme motoru"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "Tablolara gözatılırken her tablonun sıralaması hatırlanır"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Tablonun sıralamasını hatırla"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Her X hücrede başlığı tekrarla, [kbd]0[/kbd] bu özelliği devre dışı bırakır"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Başlıkları tekrarla"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Bir defada tüm düzenlenen hücreleri kaydet"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Dışa aktarmaların sunucu üzerinde kaydedilebileceği dizin"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Kayıt dizini"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Eğer kullanılmayacaksa boş bırakın"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Anamakine izin düzeni"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Varsayılan için boş bırakın"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Anamakine izin kuralları"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Parolasız oturum açmaya izin ver"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Root oturumu açmaya izin ver"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
"HTTP Kimlik Doğrulaması yaparken görüntülemek için Basit Kimlik Doğrulaması "
"alan adı"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Alanı"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5076,19 +5078,19 @@ msgstr ""
"yapılandırma dosyası yolu (belge kök klasörünüzde yer almaz; önerilen: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey yapılandırma dosyası"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Kullanmak için kimlik doğrulama yöntemi"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Kimlik doğrulama türü"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5096,11 +5098,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]Yer imi[/a] desteği istenmiyorsa "
"boş bırakın, varsayılan: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Yer imi tablosu"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5108,33 +5110,33 @@ msgstr ""
"Sütun yorumları/mime türleri istenmiyorsa boş bırakın, varsayılan: [kbd]"
"pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Sütun bilgisi tablosu"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "MySQL sunucusu bağlantısını sıkıştırır"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Bağlantıyı sıkıştır"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Sunucuya nasıl bağlanılacağıdır, eğer emin değilseniz [kbd]tcp[/kbd] olarak "
"bırakın"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Bağlantı türü"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Denetim kullanıcısı parolası"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5142,11 +5144,11 @@ msgstr ""
"Sınırlı izinlerle yapılandırılmış özel MySQL kullanıcısıdır, daha fazla "
"bilgi [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]'de mevcuttur"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Denetim kullanıcısı"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
@@ -5154,19 +5156,19 @@ msgstr ""
"Yapılandırma depolamasını tutmak için alternatif anamakine; zaten "
"tanımlanmış anamakineyi kullanmak için boş bırakın"
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "Denetim anamakinesi"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Veritabanı listesini gösterirken tabloları sayar"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Tabloları say"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5174,11 +5176,11 @@ msgstr ""
"Tasarımcı desteği istenmiyorsa boş bırakın, varsayılan: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Tasarımcı tablosu"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5186,29 +5188,29 @@ msgstr ""
"[a@http://sf.net/support/tracker.php?aid=1849494]PMA hata izleyici[/a] ve "
"[a@http://bugs.mysql.com/19588]MySQL Hataları[/a] üzerine daha fazla bilgi"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA kullanımı etkisiz"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Kullanmak için hangi PHP uzantısı; Eğer destekleniyorsa mysqli "
"kullanmalısınız"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Kullanmak için PHP uzantısı"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "Düzenli anlatıma (PCRE) uyan veritabanlarını gizler"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Veritabanlarını gizle"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5216,23 +5218,23 @@ msgstr ""
"SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, varsayılan: [kbd]"
"pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL sorgu geçmişi tablosu"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "MySQL sunucusunun çalıştığı anamakine"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Sunucu anamakine adı"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Oturum kapatma URL'si"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
@@ -5240,19 +5242,19 @@ msgstr ""
"Veritabanında saklanan tablo tercihlerinin sayısını sınırlandırır, en eski "
"kayıtlar otomatik olarak kaldırılır"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "Saklamak için en fazla tablo tercihleri sayısıdır"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Parolasız bağlanmayı dener"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Parolasız bağlan"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5267,30 +5269,30 @@ msgstr ""
"girin ve geri kalanını alfabetik sırada göstermek için sonunda [kbd]*[/kbd] "
"kullanın."
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Sadece listelenmiş veritabanları göster"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "Eğer yapılandırma kimlik doğrulaması kullanılmıyorsa boş bırakın"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "Yapılandırma kimlik den. için parola"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"PDF şeması desteği istenmiyorsa boş bırakın, varsayılan: [kbd]pma_pdf_pages[/"
"kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF şeması: sayfalar tablosu"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5300,21 +5302,21 @@ msgstr ""
"bilgi için [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]'ye bakın. "
"Destek istenmiyorsa boş bırakın. Önerilen: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Veritabanı adı"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"MySQL sunucusunun dinlemede olduğu bağlantı noktası, varsayılan ayar için "
"boş bırakın"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Sunucu bağ.noktası"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
@@ -5322,11 +5324,11 @@ msgstr ""
"Oturum geçişlerinde \"sürekli\" son kullanılan tablolar olmaması için boş "
"bırakın, önerilen: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "Son kullanılan tablo"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5334,19 +5336,19 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]İlişki bağlantıları[/a] desteği "
"istenmiyorsa boş bırakın, varsayılan: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Bağlantı tablosu"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Mevcut veritabanları getirmek için SQL komutu"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES komutu"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5354,43 +5356,43 @@ msgstr ""
"Örnek için [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]kimlik "
"doğrulama türlerine[/a] bakın"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Oturumu açma oturum adı"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Oturumu açma URL'si"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
"MySQL sunucusunun dinlemede olduğu soket, varsayılan ayar için boş bırakın"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Sunucu soketi"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "MySQL sunucusuna bağlantı için SSL etkin"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL kullan"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"PDF şeması desteği istenmiyorsa boş bırakın, varsayılan: [kbd]"
"pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF şeması: tablo koordinatları"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
@@ -5398,11 +5400,11 @@ msgstr ""
"Görüntü sütunlarını tanımlayan tablodur, destek istenmiyorsa boş bırakın; "
"önerilen: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Görüntü sütunları tablosu"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5410,11 +5412,11 @@ msgstr ""
"Oturum geçişlerinde \"sürekli\" tabloların KA tercihleri olmaması için boş "
"bırakın, önerilen: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "KA tercihleri tablosu"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
@@ -5422,11 +5424,11 @@ msgstr ""
"Veritabanı oluşturulduğunda günlüğe ilk satır olarak DROP DATABASE IF EXISTS "
"ifadesi eklenecek."
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "DROP DATABASE ifadesi ekle"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
@@ -5434,11 +5436,11 @@ msgstr ""
"Tablo oluşturulduğunda günlüğe ilk satır olarak DROP TABLE IF EXISTS ifadesi "
"eklenecek."
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "DROP TABLE ifadesi ekle"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
@@ -5446,20 +5448,20 @@ msgstr ""
"Görünüm oluşturulduğunda günlüğe ilk satır olarak DROP VIEW IF EXISTS "
"ifadesi eklenecek."
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "DROP VIEW ifadesi ekle"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
"Yeni sürümler için otomatik oluşturma kullanan ifade listesini tanımlar."
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "İfadelerden izlere"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
@@ -5467,11 +5469,11 @@ msgstr ""
"SQL sorgu izleme desteği olmaması için boş bırakın, önerilen: [kbd]"
"pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL sorgu izleme tablosu"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
@@ -5479,11 +5481,11 @@ msgstr ""
"İzleme mekanizması tablolar ve görünümler için otomatik olarak sürümler "
"oluşturur."
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "Otomatik olarak sürümleri oluştur"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
@@ -5491,15 +5493,15 @@ msgstr ""
"Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, "
"önerilen: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "Kullanıcı tercihleri depolama tablosu"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "Yapılandırma kimlik den. için kullanıcı"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
@@ -5507,21 +5509,21 @@ msgstr ""
"Bu sunucunun kolay kullanım açıklaması. Anamakine adını görüntülemek için "
"boş bırakın."
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Bu sunucunun ayrıntılı adı"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Kullanıcının "tümünü (satırları) göster" düğmesini görüntüleyip "
"görüntüleyemeyeceğidir"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Tüm satırları görüntülemeye izin ver"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5531,47 +5533,47 @@ msgstr ""
"yapılandırmasını[/kbd] etkilemez çünkü parola yapılandırma dosyasında sıkı "
"kodlanmıştır; bu, doğrudan aynı komutun yürütme kabiliyetini sınırlandırmaz"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Parola değiştirme formunu göster"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Veritabanı oluşturma formu göster"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
"Tüm tablolar için Oluşturma zaman damgasını görüntüleyen sütunu göster veya "
"gizle"
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr "Oluşturma zaman damgasını göster"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
"Tüm tablolar için Son güncelleme zaman damgasını görüntüleyen sütunu göster "
"veya gizle"
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr "Son güncelleme zaman damgasını göster"
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
"Tüm tablolar için Son kontrol zaman damgasını görüntüleyen sütunu göster "
"veya gizle"
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr "Son kontrol zaman damgasını göster"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
@@ -5579,11 +5581,11 @@ msgstr ""
"Tabloya gözatılırken görüntüleme talimatı seçeneği doldurulsada "
"doldurulmasada gösterilmesini tanımlar"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "Görüntüleme talimatını göster"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
@@ -5591,27 +5593,27 @@ msgstr ""
"Düzenle/ekle kipinde alanlar doldurulsada doldurulmasada ilk olarak "
"gösterilmesini tanımlar"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "Alan türlerini göster"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "İşlev alanlarını düzenle/ekle kipinde görüntüler"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "İşlev alanlarını göster"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "İpucu gösterilip gösterilmeyeceği"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "İpucu göster"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -5619,44 +5621,44 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] çıktısı için "
"bağlantı gösterir"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "phpinfo() bağlantısını göster"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "Ayrıntılı MySQL sunucu bilgisini göster"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"phpMyAdmin tarafından oluşturulan SQL sorgularının görüntülenip "
"görüntülenmemesini tanımlar"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "SQL sorgularını göster"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "Sorgu kutusunun sunuşundan sonra ekranda kalıp kalmamasını tanımlar"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "Sorgu kutusunu tut"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Veritabanı ve tablo istatistiklerini görüntülemek için izin verir (örn. alan "
"kullanımı)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "İstatistikleri göster"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -5664,11 +5666,11 @@ msgstr ""
"Eğer araç ipuçları etkinse ve veritabanı yorumu ayarlıysa bu, yorumu ve "
"gerçek adı çevirecek"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Veritabanının adı yerine yorumunu görüntüle"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5680,30 +5682,30 @@ msgstr ""
"içe koymak için kulanılır, bu yüzden sadece klasör, kod adı gibi çağrılır, "
"tablo adının kendi değişmeden kalır"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Tablonun adı yerine yorumunu görüntüle"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Araç ipuçlarında tablo yorumlarını görüntüle"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Kullanılan tabloları işaretleyin ve veritabanlarını kilitli tablolarla "
"birlikte gösterilmesini mümkün yapın"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Kilitli tabloları atla"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5713,7 +5715,7 @@ msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir"
msgid "Password"
msgstr "Parola"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
@@ -5721,11 +5723,11 @@ msgstr ""
"[strong]Uyarı:[/strong] PHP SOAP uzantısı ya da PEAR SOAP kurulu olması "
"gerekir"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "SQL Onaylayıcı etkin"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
@@ -5733,20 +5735,20 @@ msgstr ""
"Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı [kbd]"
"isimsiz'dir[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Kullanıcı Adı"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "Eğer Suhosin algılanırsa, ana sayfada uyarı gösterilir"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin uyarısı"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5754,11 +5756,11 @@ msgstr ""
"Düzenle kipinde metin alanı boyutu (sütunlar), bu değer SQL sorgu metni "
"alanları (*2) ve sorgu penceresi (*1.25) için önemi belirtecektir"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "Metin alanı sütunları"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5766,31 +5768,31 @@ msgstr ""
"Düzenle kipinde metin alanı boyutu (satırlar), bu değer SQL sorgu metni "
"alanları (*2) ve sorgu penceresi (*1.25) için önemi belirtecektir"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "Metin alanı satırları"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "Veritabanı seçildiğinde tarayıcı penceresi başlığı"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "Hiçbir şey seçilmediğinde tarayıcı penceresi başlığı"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Varsayılan başlık"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "Sunucu seçildiğinde tarayıcı penceresi başlığı"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "Tablo seçildiğinde tarayıcı penceresi başlığı"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5802,27 +5804,27 @@ msgstr ""
"Forwarded-For) başlığına güvenmesini belirler:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "IP İzin Verme/Reddetme için güvenilir proksi listesi"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "İçe aktarmak için dosyaları gönderebileceğiniz sunucu üzerindeki dizin"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Gönderme dizini"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "Tüm veritabanı içinde aramaya izin verir"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Veritabanı aramayı kullan"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
@@ -5830,27 +5832,27 @@ msgstr ""
"Etkisizleştirildiğinde kullanıcılar sağdaki işaret kutusunu dikkate almadan "
"herhangi bir seçeneği ayarlayamazlar"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "Ayarlarda Geliştirici sekmesi etkin"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Son sürümü kontrol et"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "Ana phpMyAdmin sayfasında son sürümü kontrol etmeyi etkinleştir"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Sürüm kontrolü"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5858,7 +5860,7 @@ msgstr ""
"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] sıkıştırma etkin"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5879,85 +5881,85 @@ msgid "Signon authentication"
msgstr "Oturumu açma kimlik doğrulaması"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "VERİ YÜKLE kullanarak CSV"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Açık Kaynaklı Tablolama Belgesi"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "Hızlı"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "Özel"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Veritabanı dışa aktarma seçenekleri"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel için CSV"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "Açık Belge Metni"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "Drizzle bağlantı kütüphanesi başlatılamadı"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "Drizzle sunucusuna bağlanılamadı"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "MySQL sunucusuna bağlanılamadı"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "Yapılandırma kimlik doğrulaması yöntemi kullanırken kullanıcı adı boş"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"Oturumu açma kimlik doğrulaması yöntemi kullanırken oturumu açma oturum adı "
"boş"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"Oturumu açma kimlik doğrulaması yöntemi kullanırken oturumu açma URL'si boş"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "pmadb kullanan boş phpMyAdmin denetim kullanıcısı"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "pmadb kullanan boş phpMyAdmin denetim kullanıcısı parolası"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Yanlış IP adresi: %s"
@@ -5977,7 +5979,7 @@ msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin."
msgid "possible deep recursion attack"
msgstr "olası aşırı özyinelemeli saldırı"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5985,15 +5987,15 @@ msgstr ""
"Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak "
"yapılandırılmadı)."
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "Sunucu yanıt vermiyor."
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin."
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Ayrıntılar..."
@@ -6059,7 +6061,7 @@ msgstr "Tablo oluştur"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Adı"
@@ -6218,25 +6220,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Kodlama Dönüştürme:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr "%2$s dalından %1$s"
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr "dal yok"
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr "Git gözden geçirme"
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, php-format
msgid "committed on %1$s by %2$s"
msgstr "%2$s tarafından %1$s tarihinde işlendi"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, php-format
msgid "authored on %1$s by %2$s"
msgstr "%2$s tarafından %1$s tarihinde hazırlandı"
@@ -6957,18 +6959,17 @@ msgid "Display MIME types"
msgstr "MIME türlerini göster"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Anamakine"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Üretim Zamanı"
@@ -7189,15 +7190,7 @@ msgstr "GIS görselleştirmesi için bulunan veri yok."
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS üzerine yazma girişimi"
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL sonucu"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Üreten:"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)."
@@ -7298,7 +7291,7 @@ msgstr "CSV girdisinde %d. satırda geçersiz sütun sayısı."
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Tablo adı"
@@ -7653,7 +7646,7 @@ msgstr "PDF'lerin oluşturulması"
msgid "Displaying Column Comments"
msgstr "Sütun Yorumları gösteriliyor"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Tarayıcı dönüşümü"
@@ -7760,10 +7753,10 @@ msgid "Variable"
msgstr "Değişken"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Değer"
@@ -7826,7 +7819,7 @@ msgstr "Parola Üret"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7862,8 +7855,8 @@ msgid "Edit event"
msgstr "Olay düzenle"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "İstek işlemede hata"
@@ -7913,7 +7906,7 @@ msgstr "Tamamlamada koruma"
msgid "Definer"
msgstr "Tanımlayıcı"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "Tanımlayıcı \"kullanıcıadı@anamakineadı\" biçiminde olmak zorundadır"
@@ -7971,7 +7964,7 @@ msgstr ""
"gelişmiş 'mysqli' uzantısı kullanın."
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Geçersiz yordam türü: \"%s\""
@@ -8042,17 +8035,17 @@ msgstr "Güvenlik türü"
msgid "SQL data access"
msgstr "SQL veri erişimi"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Bir yordam adı vermek zorundasınız"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Parametre için geçersiz yön \"%s\" verilmiş."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
@@ -8060,40 +8053,40 @@ msgstr ""
"ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için uzunluk/"
"değerler vermek zorundasınız."
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "Her yordam parametresi için bir ad ve bir tür vermek zorundasınız."
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız."
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "Bir yordam tanımı vermek zorundasınız."
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "İşlemin içindeki son ifade tarafından %d satır etkilendi"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "%s yordamı yürütme sonuçları"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Yordamı çalıştır"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Yordam parametreleri"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "İşlev"
@@ -8268,7 +8261,7 @@ msgstr "İçerik tablosu"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Öznitelikler"
@@ -8367,12 +8360,12 @@ msgid "Toggle scratchboard"
msgstr "Karalama panosunu değiştir"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Bilinmeyen dil: %1$s."
@@ -8418,7 +8411,7 @@ msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır"
msgid "Run SQL query/queries on database %s"
msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Temizle"
@@ -8427,11 +8420,11 @@ msgstr "Temizle"
msgid "Columns"
msgstr "Sütun"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorgusunu işaretle"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
@@ -8531,12 +8524,12 @@ msgstr ""
"SQL onaylayıcısı başlatılamadı. %sBelgede%s anlatıldığı gibi lütfen gerekli "
"PHP uzantılarının kurulu olduğunu kontrol edin."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr "%s izleme aktif edildi."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8548,7 +8541,7 @@ msgstr ""
"çizgi (\"\\\") veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters "
"eğik çizgi koyun (örneğin '\\\\xyz' veya 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8556,17 +8549,17 @@ msgstr ""
"Varsayılan değerler için lütfen sola eğik çizgisiz veya alıntısız sadece tek "
"değer girin, bu biçimi kullanarak: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "İndeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
msgid "Move column"
msgstr "Sütunu taşı"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8575,11 +8568,11 @@ msgstr ""
"Mevcut dönüşüm seçeneklerinin listesi ve bunların MIME türü dönüşümleri için "
"%sdönüşüm tanımlamarı%s'na tıklayın"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Dönüşüm seçenekleri"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8591,71 +8584,71 @@ msgstr ""
"veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters eğik çizgi koyun "
"(örneğin '\\\\xyz' veya 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM ya da SET verisi çok mu uzun?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "Daha fazla düzenleme alanı alın"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "Yok"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Tanımlandığı gibi:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Birincil"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Tam metin"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr "ilk"
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr "%s sonrasına"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "%s sütun ekle"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "En az bir sütun eklemek zorundasınız."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Depolama Motoru"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "PARTITION tanımı"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "İşletici"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "Tablo Arama"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "Düzenle/Ekle"
@@ -8825,11 +8818,11 @@ msgstr ""
"Tercihleriniz sadece şu anki oturum için kaydedilecektir. Bunların kalıcı "
"olarak saklanması %sphpMyAdmin yapılandırma depolaması%s gerektirir."
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "Yapılandırma kaydedilemedi"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8841,8 +8834,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP arşivi içinde bulunan dosya yok!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ZIP arşivinde hata:"
@@ -9021,16 +9014,21 @@ msgstr ""
msgid "No databases"
msgstr "Veritabanı yok"
-#: navigation.php:261
+#: navigation.php:209
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "Veritabanlarını adına göre süz"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "Tabloları adına göre süz"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "Tablo oluştur"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Lütfen bir veritabanı seçin"
@@ -10181,7 +10179,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Başlangıçtan bu yana sorular: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "İfadeler"
@@ -11431,12 +11429,12 @@ msgstr "Hataları yoksay"
msgid "Show form"
msgstr "Formu göster"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr "Ne URL ne de CURL mevcut. Sürüm kontrolü mümkün değil."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -11444,15 +11442,15 @@ msgstr ""
"Sürüm okuma başarısız. Çevrimdışı olabilirsiniz ya da yükseltme sunucusu "
"cevap vermiyordur."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Sunucudan geçersiz sürüm dizgisi alındı"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Ayrıştırılamaz sürüm dizgisi"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11461,11 +11459,11 @@ msgstr ""
"Git sürümünü kullanıyorsunuz, [kbd]git pull[/kbd] çalıştırın :-)[br]Son "
"sağlam sürüm %s, %s tarihinde yayınlandı."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Daha yeni sağlam sürüm mevcut değil"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11479,7 +11477,7 @@ msgstr ""
"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11490,7 +11488,7 @@ msgstr ""
"olarak oluşturuldu. Bu tanımlama bilgileri şifrelemek için kullanılır; bunu "
"hatırlamanıza gerek yoktur."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
@@ -11499,7 +11497,7 @@ msgstr ""
"%sBzip2 sıkıştırması ve açması%s bu sistemde mevcut olmayan işlevleri (%s) "
"gerektiriyor."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11508,12 +11506,12 @@ msgstr ""
"de okunabilir veya yazılabilir olmadığına emin olmak için bu değer iki defa "
"kontrol edilmelidir."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Eğer web sunucunuz destekliyorsa bu %sseçeneği%s etkinleştirmelisiniz."
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
@@ -11522,7 +11520,7 @@ msgstr ""
"%sGZip sıkıştırması ve açması%s bu sistemde mevcut olmayan işlevleri (%s) "
"gerektiriyor."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11533,7 +11531,7 @@ msgstr ""
"olması, eğer onun değerinden %ssession.gc_maxlifetime%s düşükse (şu anki %d) "
"gelişi güzel oturum geçersizliklerine sebep olabilir."
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11543,7 +11541,7 @@ msgstr ""
"dakika) ayarlanmalıdır. 1800'den büyük değerler taklit edilme gibi güvenlik "
"riski yaratabilir."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11553,7 +11551,7 @@ msgstr ""
"tanımlama bilgisi depolaması%s değeri 0 değilse, %sOturum açma tanımlama "
"bilgisi geçerliliği%s eşit ya da daha az değere ayarlanmak zorundadır."
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11566,7 +11564,7 @@ msgstr ""
"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11582,7 +11580,7 @@ msgstr ""
"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"kbd] olarak ayarlayın."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
@@ -11590,31 +11588,31 @@ msgid ""
msgstr ""
"%sZip sıkıştırması%s bu sistemde mevcut olmayan işlevleri (%s) gerektirir."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "%sZip açması%s bu sistemde mevcut olmayan işlevleri (%s) gerektirir."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
"Eğer veritabanı sunucunuz destekliyorsa SSL bağlantıları kullanmalısınız."
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "Verim almak için mysqli kullanmalısınız."
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Sunucuya parolasız bağlanmaya izin verdiniz."
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "Anahtar çok kısa, en az 8 karakter olmalıdır."
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir."
@@ -11622,8 +11620,8 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir."
msgid "Wrong data"
msgstr "Yanlış veri"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Dış değerlere gözat"
@@ -11653,21 +11651,29 @@ msgstr "SQL sorgusu gösteriliyor"
msgid "Validated SQL"
msgstr "Oanylı SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL sonucu"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Üreten:"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Etiket"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tablo %1$s başarılı olarak değiştirldi"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
msgid "The columns have been moved successfully."
msgstr "Sütunlar başarılı olarak taşındı."
@@ -11785,7 +11791,7 @@ msgstr "Y Değeri"
msgid "Table %s already exists!"
msgstr "%s tablosu zaten var!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "Tablo %1$s oluşturuldu."
@@ -11986,43 +11992,43 @@ msgstr "Bölümlendirmeyi kaldır"
msgid "Check referential integrity:"
msgstr "İlgili bütünlük kontrolü:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "Tablolar gösteriliyor"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Alan kullanımı"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Kullanım"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Etkili"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Satır İstatistikleri"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "sabit"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "değişken"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Satır uzunluğu"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Satır boyutu"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "Sonraki otoindeks"
@@ -12313,27 +12319,27 @@ msgstr "Bu veri işleme ifadelerini izle:"
msgid "Create version"
msgstr "Sürüm oluştur"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "İki farklı sütun için \"örnekle sorgulama\" (joker: \"%\") yap"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "İlave arama kriteri"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "Bu sütunu her noktayı etiketlemek için kullan"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "Çizim için en fazla satır"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "Noktalara gözat/düzenle"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "Nasıl kullanılır"
diff --git a/po/tt.po b/po/tt.po
index 3aaf9b9871..f54aea670c 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-01-12 11:43+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:17+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: tatarish \n"
"Language: tt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.1.6\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Barısın kürsät"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Bitneñ sanı:"
@@ -39,30 +39,30 @@ msgstr ""
"tora."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Ezläw"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Ezläw"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Äydä"
@@ -107,11 +107,11 @@ msgstr "%s biremlege beterelde."
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "Biremlek açıqlaması:"
+msgstr "Biremlek açıqlaması: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Tüşämä açıqlaması"
@@ -122,16 +122,16 @@ msgstr "Tüşämä açıqlaması"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Alan iseme"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Alan iseme"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Töre"
@@ -156,9 +156,9 @@ msgstr "Töre"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Buş"
@@ -168,7 +168,7 @@ msgstr "Buş"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Töpcay"
@@ -177,18 +177,18 @@ msgstr "Töpcay"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Bonı belän bäyläneş:"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Açıqlama"
@@ -199,11 +199,11 @@ msgstr "Açıqlama"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Yuq"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Äye"
msgid "View dump (schema) of database"
msgstr "Biremlek eçtälegen (tözeleşen) çığaru"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Bu biremlektä ber genä dä tüşämä yuq."
@@ -327,8 +327,8 @@ msgstr "Kübäytelgän biremlekkä küçäse"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -353,8 +353,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Bäyläneşlär sxeme"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -364,45 +364,44 @@ msgstr "Bäyläneşlär sxeme"
msgid "Table"
msgstr "Tüşämä"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Kerem"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Küläme"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "totıla"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Yasalışı"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Soñğı yañartılu"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Soñğı tikşerü"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -496,13 +495,13 @@ msgstr "Tüşämä qullanıp"
msgid "SQL query on database %s :"
msgstr "%s biremlegenä SQL-soraw:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Sorawnı Yulla"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "İreşep Bulmadı"
@@ -536,8 +535,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "%s kileşü bar, %s atlı tüşämädä"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Küzätü"
@@ -568,7 +567,7 @@ msgstr[0] "Tulayım: %s kileşü"
#: db_search.php:289
msgid "Search in database"
-msgstr "Biremlektä ezläw: "
+msgstr "Biremlektä ezläw"
#: db_search.php:292
#, fuzzy
@@ -622,11 +621,11 @@ msgstr "\"%s\" atlı Qaraş beterelgän buldı"
msgid "Table %s has been dropped"
msgstr "\"%s\" atlı tüşämä beterelde"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr ""
@@ -638,7 +637,7 @@ msgid ""
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Qaraş"
@@ -684,7 +683,7 @@ msgstr "Check overheaded"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -693,17 +692,18 @@ msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Bastıru küreneşe"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Buşat"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -752,15 +752,14 @@ msgid "Tracked tables"
msgstr "Tüşämä tikşerü"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Biremlek"
@@ -780,7 +779,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Torış"
@@ -988,13 +987,13 @@ msgstr "Bitbilge kürsätü"
msgid "The bookmark has been deleted."
msgstr "Tamğa beterelde."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Birem uqıp bulmadı"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1017,7 +1016,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "%s digän bitbilge yaratıldı"
@@ -1039,8 +1038,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1169,9 +1168,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Tözätü"
@@ -1198,7 +1197,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Tulayım"
@@ -1209,12 +1208,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1306,13 +1305,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1380,27 +1379,27 @@ msgid "Connections"
msgstr "Totaşular"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bayt"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1446,9 +1445,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Buş"
@@ -1636,7 +1635,7 @@ msgstr "SQL Centekläw"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Waqıt"
@@ -2002,7 +2001,7 @@ msgstr "%d digäne yazma sanı öçen kileşmi."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2018,7 +2017,7 @@ msgstr "SQL-soraw"
msgid "Show search criteria"
msgstr "SQL-soraw"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2205,7 +2204,7 @@ msgstr "Sersüz üzgärtü"
msgid "More"
msgstr "Dşm"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2313,27 +2312,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Ğın"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Äpr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2341,37 +2340,37 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Yün"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Yül"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Ökt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Nöy"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dek"
@@ -2420,32 +2419,32 @@ msgid "Sun"
msgstr "Ykş"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Dşm"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Sşm"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Çrş"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Pnc"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Cmğ"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Şmb"
@@ -2605,11 +2604,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr ""
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2617,48 +2616,48 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr ""
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr ""
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr ""
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr ""
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr ""
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
#, fuzzy
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr "Törle buluı bar. YBS 3.11 qarísı"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2672,7 +2671,7 @@ msgstr "Açqıç bilgelänmäde!"
msgid "Indexes"
msgstr "Tezeşlär"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2709,46 +2708,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Biremleklär"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Tözeleş"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Östäw"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Eşkärtü"
@@ -2830,19 +2829,19 @@ msgstr ""
msgid "Engines"
msgstr "Engine"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Xata"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row deleted."
@@ -2850,7 +2849,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "Kertemnär sayladı"
msgstr[1] "Kertemnär sayladı"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "No rows selected"
msgid "%1$d row inserted."
@@ -2900,52 +2899,52 @@ msgstr "Bu MySQL serverdä %s sünderelgän bulğan."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Bu MySQL server %s saqlaw enginen totmí."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
msgid "Source database `%s` was not found!"
msgstr "Biremlektä ezläw: "
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "%s digän tışlaw tabılmadı!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Yaraqsız biremlek"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Tüşämä adı yaraqsız"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "\"%s\" tüşämäse \"%s\" itep ataldı"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2953,16 +2952,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "bonı sayla"
@@ -3014,7 +3013,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3055,12 +3054,12 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
msgid "A date, supported range is %1$s to %2$s"
msgstr "Server söreme"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3071,7 +3070,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3089,7 +3088,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3102,7 +3101,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3201,77 +3200,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Yaña tezeş yaratu"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Yul ara bilgese"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Tulayım"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3341,20 +3340,20 @@ msgstr "Server Saylaw"
msgid "Cookies must be enabled past this point."
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Kimendä %s sekund eşlämi tordıq, şuña kürä yañadan keräse"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL servergä totaşılıp bulmadı"
@@ -3398,18 +3397,18 @@ msgstr "Tüşämä"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Eçtälek"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Overhead"
@@ -3518,8 +3517,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-soraw"
@@ -3529,83 +3528,83 @@ msgstr "SQL-soraw"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
-msgstr "MySQL qaytarışı:"
+msgstr "MySQL qaytarışı: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL Centekläw"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL Centeklämäskä"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP Kodısız"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP-Kod yasa"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Yañart"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL Tikşermäskä"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL'nı Tikşer"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Engine"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ykş"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y.%m.%d, %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s kön, %s säğät, %s minut ta %s sekund"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3613,7 +3612,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Başlawğa"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3622,7 +3621,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Uzğan"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3631,7 +3630,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Kiläse"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3639,45 +3638,45 @@ msgctxt "Last page"
msgid "End"
msgstr "Azaq"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" biremlegenä küç."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "web-server'neñ yökläw törgäge"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Bastır"
@@ -3770,71 +3769,71 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Üzgärmä"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
msgid "SOAP extension not found"
msgstr "PHP Söreme"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3853,7 +3852,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4148,7 +4147,7 @@ msgid "Character set of the file"
msgstr "Şul biremneñ bilgelämäse:"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Tözeleş"
@@ -4262,7 +4261,7 @@ msgstr "Açqıç yazması"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME-törläre"
@@ -4392,8 +4391,8 @@ msgstr "Biremlek saqlaw köyläneşe"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4841,111 +4840,117 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Açıq toruçı tüşämä sanı."
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "The number of tables that are open."
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Açıq toruçı tüşämä sanı."
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
#, fuzzy
msgid "Database tree separator"
msgstr "Birem adınıñ tözeleşe"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
#, fuzzy
msgid "Use light version"
msgstr "MySQL belän totaştırğıç söreme"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
msgid "Recently used tables"
msgstr "Tüşämä tikşerü"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4953,457 +4958,457 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
#, fuzzy
msgid "Maximum databases"
msgstr "Biremleklär yuq"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
#, fuzzy
msgid "Memory limit"
msgstr "Resurs çikläwläre"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Tüşämä eçtälegen bolay tezäse"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Soraw täräzäse"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Soraw täräzäse"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Soraw täräzäse"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Tüşämä adın üzgärtü"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Tözätü cebe"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
#, fuzzy
msgid "Save directory"
msgstr "Biremnär törgäge"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
#, fuzzy
msgid "Connection type"
msgstr "Totaşular"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Bar bulğan host"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
#, fuzzy
msgid "Count tables"
msgstr "Berär genä dä tüşämä yuq"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
#, fuzzy
msgid "Designer table"
msgstr "Tüşämä kisäklären berläşterü"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
#, fuzzy
msgid "PHP extension to use"
msgstr "PHP Söreme"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
#, fuzzy
msgid "Hide databases"
msgstr "Biremleklär yuq"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
#, fuzzy
msgid "Server hostname"
msgstr "server adı"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5412,375 +5417,375 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "biremlek adı"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
#, fuzzy
msgid "Server port"
msgstr "Server ID'e"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Tüşämä centekläw"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
#, fuzzy
msgid "Relation table"
msgstr "Tüşämä tözätü"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
#, fuzzy
msgid "Server socket"
msgstr "Server Saylaw"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display columns table"
msgstr "Buy Açıqlamasın Kürsätäse"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Tüşämä kisäklären berläşterü"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Cömlä"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Üzennän tözälü ısulı"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "PHP turında"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
msgid "Show display direction"
msgstr "Biremlek saqlaw köyläneşe"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Açıq tüşämä tezmäse"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Sırlı kürsät"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
#, fuzzy
msgid "Show SQL queries"
msgstr "Tulı Sorawlar Kürsät"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
msgid "Retain query box"
msgstr "SQL-soraw"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
#, fuzzy
msgid "Show statistics"
msgstr "Kerem Nöfüse"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5788,29 +5793,29 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
#, fuzzy
msgid "Skip locked tables"
msgstr "Açıq tüşämä tezmäse"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5820,80 +5825,80 @@ msgstr ""
msgid "Password"
msgstr "Sersüz"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
#, fuzzy
msgid "Username"
msgstr "Atama:"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "Add/Delete Field Columns"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
msgid "Default title"
msgstr "Biremlekne bolay atap quy"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5901,60 +5906,60 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
#, fuzzy
msgid "Upload directory"
msgstr "Biremnär törgäge"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5975,82 +5980,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "LOAD DATA qullanıp CSV"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Biremlek saqlaw köyläneşe"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV bireme, MS Excel öçen"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -6070,7 +6075,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6078,17 +6083,17 @@ msgid ""
"configured)."
msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Bu server endäşmi"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6155,7 +6160,7 @@ msgstr "Yaña Bit yaratu"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Adı"
@@ -6345,25 +6350,25 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "MySQL belän totaştırğıç söreme"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
msgid "committed on %1$s by %2$s"
msgstr "Server söreme"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
msgid "authored on %1$s by %2$s"
msgstr "Server söreme"
@@ -7102,18 +7107,17 @@ msgid "Display MIME types"
msgstr "Barlıq MIME-törlär"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Ürçäw Zamanı"
@@ -7328,15 +7332,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL qaytarışı"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Ürçätkeç:"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı."
@@ -7432,7 +7428,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
#, fuzzy
msgid "Table name"
@@ -7796,7 +7792,7 @@ msgstr "PDF yaratu"
msgid "Displaying Column Comments"
msgstr "Buy Açıqlamasın Kürsätäse"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Browser transformation"
@@ -7894,10 +7890,10 @@ msgid "Variable"
msgstr "Üzgärmä"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Bäyä"
@@ -7956,7 +7952,7 @@ msgstr "Sersüz Ürçetü"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7994,8 +7990,8 @@ msgid "Edit event"
msgstr "Cibärelde"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8057,7 +8053,7 @@ msgstr "Tulayım östise"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8113,7 +8109,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8198,57 +8194,57 @@ msgstr "Soraw töre"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Eçke funksílar eşlätterergä birä."
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funksí"
@@ -8454,7 +8450,7 @@ msgstr "Eçtälek isemlege"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Üzençälek"
@@ -8563,12 +8559,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Belgesez tel: %1$s."
@@ -8618,7 +8614,7 @@ msgstr "%s digän serverdä SQL-soraw eşlätü"
msgid "Run SQL query/queries on database %s"
msgstr "%s biremlegendä eşlätäse SQL-soraw"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
#, fuzzy
msgid "Clear"
@@ -8630,11 +8626,11 @@ msgstr "Täqwim"
msgid "Columns"
msgstr "Alan iseme"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Bu SQL-sorawğa tamğa quy"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
@@ -8722,12 +8718,12 @@ msgstr ""
"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında "
"%squllanmada%s uqıp bula."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, php-format
msgid "Tracking of %s is activated."
msgstr ""
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -8744,7 +8740,7 @@ msgstr ""
">Bäyä eçenä kireawış (\"\\\") yä sıñarquote (\"'\") kertäse bulsa, anı "
"kireawıştırası bula (ürnäk: '\\\\xyz' yä ki 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8752,19 +8748,19 @@ msgstr ""
"Töpcay bäyäsen kertkändä, kireawışlar qullanmasqa, cäyä eçenä da salmasqa. "
"Bolayraq kertäse: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Tezeş"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "Add/Delete Field Columns"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8773,11 +8769,11 @@ msgstr ""
"For a list of available transformation options and their MIME-type "
"transformations, click on %stransformation descriptions%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8789,79 +8785,79 @@ msgstr ""
"quote (\"'\") amongst those values, backslash it (for example '\\\\xyz' or 'a"
"\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Buş"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Töp"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Tulımäten"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "%s artınnan"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add %s field(s)"
msgid "Add %s column(s)"
msgstr "%s alan östäw"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Kimendä berär alan kertäse."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Saqlaw Isulı"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Ezläw"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9049,13 +9045,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not save configuration"
msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9065,8 +9061,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP-tuplama eçendä biremnär tabılmadı!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ZIP-tuplama eçendä xata:"
@@ -9246,19 +9242,25 @@ msgstr ""
msgid "No databases"
msgstr "Biremleklär yuq"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "tüşämä adı"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "tüşämä adı"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
msgctxt "short form"
msgid "Create table"
msgstr "Yaña Bit yaratu"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Berär biremlek saylísı"
@@ -10446,7 +10448,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Cömlä"
@@ -11578,37 +11580,37 @@ msgstr ""
msgid "Show form"
msgstr "Tösle kürsät"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11617,39 +11619,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11657,21 +11659,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11680,7 +11682,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11690,37 +11692,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11730,8 +11732,8 @@ msgstr ""
msgid "Wrong data"
msgstr "Biremleklär yuq"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11766,21 +11768,29 @@ msgstr "Tulı Sorawlar Kürsät"
msgid "Validated SQL"
msgstr "SQL'nı Tikşer"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL qaytarışı"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Ürçätkeç:"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Yarlıq"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11917,7 +11927,7 @@ msgstr "Bäyä"
msgid "Table %s already exists!"
msgstr "%s atlı tüşämä bar inde!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, fuzzy, php-format
msgid "Table %1$s has been created."
msgstr "\"%s\" atlı tüşämä beterelde"
@@ -12133,45 +12143,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Bäyläneşlärne döreslekkä tikşerü:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Tüşämälär kürsätäse"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Totılğan Alan"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Totılu"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Uñışlı"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Kerem Nöfüse"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "üzgärüçän"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Kerem ozınlığı"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Kerem olılığı"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12479,30 +12489,30 @@ msgstr ""
msgid "Create version"
msgstr "Server söreme"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL-soraw"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
msgid "How to use"
msgstr "PHP Söreme"
diff --git a/po/ug.po b/po/ug.po
index bb9d3dd200..aeea9aba91 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-14 14:46+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:16+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Uyghur \n"
"Language: ug\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 0.6\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -23,11 +23,11 @@ msgid "Show all"
msgstr "ھەممىسىنى كۆرسىتىش"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "بەت نومۇرى:"
@@ -41,30 +41,30 @@ msgstr ""
"ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "ئىزدەش"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -74,7 +74,7 @@ msgstr "ئىزدەش"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "ئىجرا قىلىش"
@@ -112,8 +112,8 @@ msgid "Database comment: "
msgstr "ساندان ئىزاھاتى: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "جەدۋەل ئىزاھى"
@@ -124,14 +124,14 @@ msgstr "جەدۋەل ئىزاھى"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "سۆزلەم"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "سۆزلەم"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "تۈرى"
@@ -156,9 +156,9 @@ msgstr "تۈرى"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "بوش"
@@ -168,7 +168,7 @@ msgstr "بوش"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "ئەندىز"
@@ -177,18 +177,18 @@ msgstr "ئەندىز"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "ئۇلانما"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "ئىزاھلار"
@@ -199,11 +199,11 @@ msgstr "ئىزاھلار"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "يوق"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "بولدى"
msgid "View dump (schema) of database"
msgstr "ساندان قالدۇقىنى كۆرسىتىش"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "سانداندا جەدۋەل يوق"
@@ -324,8 +324,8 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -347,8 +347,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "PDF تىزىىسىنى كۆرسىتىش"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -358,45 +358,44 @@ msgstr "PDF تىزىىسىنى كۆرسىتىش"
msgid "Table"
msgstr "جەدۋەل"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "سەپ سانى"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "ھەجىم"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "ئىشلىتىلمەكتە"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "قۇرۇش"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "ئاخىرقى يېڭلىنىش"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "ئاخىرقى تەكشۈرۈش"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -484,13 +483,13 @@ msgstr "جەدۋەللەرنى ئىشلىتىش"
msgid "SQL query on database %s :"
msgstr "SQL ئىجرا بولۋاتقان ساندان %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "تاپشۇرۇش"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "رەت قىلىندى"
@@ -525,8 +524,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "كۆزەت"
@@ -608,11 +607,11 @@ msgstr "%s كۆرۈنمە ئۆچۈرۈلدى"
msgid "Table %s has been dropped"
msgstr "%s جەدىۋەل ئۆچۈرۈلدى"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "ئاكتىپ ئىزلاش"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "ئىزلاش ئاكتىپ ئەمەس"
@@ -624,7 +623,7 @@ msgid ""
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "قاراش"
@@ -669,7 +668,7 @@ msgstr "مەزمۇن بارلارنى تاللاش"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -678,17 +677,18 @@ msgid "Export"
msgstr "چىقىرىش"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "بېسىپ كۆرسىتىش"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "تازىلاش"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -733,15 +733,14 @@ msgid "Tracked tables"
msgstr "ئىزلانغان جەدۋەل"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "ساندان"
@@ -759,7 +758,7 @@ msgstr "يېڭلاش"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "ھالەت"
@@ -962,13 +961,13 @@ msgstr "خەتكۈچنى كۆرسىتىش"
msgid "The bookmark has been deleted."
msgstr "خەتكۈچ ئۆچۈرۈلدى"
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "ھۆججەتنى ئوقۇيالمىدى"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -991,7 +990,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "قۇرۇلغان خەتكۈچ %s"
@@ -1013,8 +1012,8 @@ msgid ""
"won't be able to finish this import unless you increase php time limits."
msgstr ""
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1141,9 +1140,9 @@ msgid "Close"
msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "تەھىرلەش"
@@ -1171,7 +1170,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "يىغىندىسى"
@@ -1182,12 +1181,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1276,13 +1275,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KiB"
@@ -1346,27 +1345,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "بايت"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1414,9 +1413,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "يوق"
@@ -1606,7 +1605,7 @@ msgstr "SQL ئىزاھى"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "ۋاقىت"
@@ -1968,7 +1967,7 @@ msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1984,7 +1983,7 @@ msgstr ""
msgid "Show search criteria"
msgstr "SQL سورىقى"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2167,7 +2166,7 @@ msgstr "پارولنى ئۆزگەرتىش"
msgid "More"
msgstr "تېخىمۇ كۆپ"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2261,63 +2260,63 @@ msgid "December"
msgstr "12-ئاي"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "1-ئاي"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "2-ئاي"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "3-ئاي"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "4-ئاي"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "5-ئاي"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "6-ئاي"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "چىللە"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "تومۇز"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "مىزان"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "ئوغۇز"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "ئوغلاق"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "كۆنەك"
@@ -2358,32 +2357,32 @@ msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "دۈشەنبە"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "سەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "چارشەنبە"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "پەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "جۈمە"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "شەنبە"
@@ -2525,11 +2524,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "خەتنىڭ چوڭ-كىچىكلىكى"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2537,49 +2536,49 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن "
"ئېشىپ كەتتى."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
msgstr ""
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2593,7 +2592,7 @@ msgstr "index قىممىتى بەلگىلەنمىگەن!"
msgid "Indexes"
msgstr "تېزىسلار"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2629,46 +2628,46 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "ساندان"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "مۇلازىمىتېر"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "تۈزۈلىشى"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "قىستۇرۇش"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "ئىشلەملەر"
@@ -2747,25 +2746,25 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "خاتالىق"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d row affected."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d row deleted."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2813,52 +2812,52 @@ msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە ب
msgid "This MySQL server does not support the %s storage engine."
msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "تېما %s تېپىلمىدى!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "ئۈنۈمسىز ساندان"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "ئۈنۈمسىز جەدۋەل ئىسمى"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى."
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2866,16 +2865,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "ئالدىن كۆرگىنى بولمايدۇ."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "ئېلىش"
@@ -2927,7 +2926,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2968,13 +2967,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version"
msgid "A date, supported range is %1$s to %2$s"
msgstr "نەشىرنى قۇىماق"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2985,7 +2984,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3003,7 +3002,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3016,7 +3015,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3113,77 +3112,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "نەشىرنى قۇىماق"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "قۇر ئالماشۇرۇش بەلگىسى"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3251,20 +3250,20 @@ msgstr "مۇلازىمىتېر تاللاش"
msgid "Cookies must be enabled past this point."
msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "پارولسىز كىرىش چەكلەنگەن (پارولسىز كىرىش ئىقازىتىنى كۆرۈڭ)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى."
@@ -3310,18 +3309,18 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "سانلىق مەلۇمات"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "ئېغىر يۈك"
@@ -3430,8 +3429,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL سورىقى"
@@ -3441,83 +3440,83 @@ msgstr "SQL سورىقى"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
-msgstr "MySQL جاۋابى:"
+msgstr "MySQL جاۋابى: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr ""
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL ئىزاھى"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL ئىزاھىىدىن ئاتلاش"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP كودى يوق"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP كودى قۇرۇش"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "يېڭلاش"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL دەلىللەشتىن ئاتلاش"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL دەلىللەش"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "ئىچكى بىرلىشىش"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "ئاساسىي مەزمۇن"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "دائىملىق"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3525,7 +3524,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "باشلا"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3534,7 +3533,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "ئالدىنقىسى"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3543,7 +3542,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "كىيىنكى ئاي"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3551,47 +3550,47 @@ msgctxt "Last page"
msgid "End"
msgstr "ئاخىرقىسى"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "ساندان "%s" .غا ئۆتۈش"
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "بىر چىكىپ تاللاڭ"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "يازدۇر"
@@ -3677,70 +3676,70 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr ""
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr ""
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr ""
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "Link not found"
msgid "SOAP extension not found"
msgstr "ئۇلىنىشنى تاپالمىدى"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr ""
@@ -3759,7 +3758,7 @@ msgid "Set value: %s"
msgstr ""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr ""
@@ -4040,7 +4039,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "فورماتلاش"
@@ -4144,7 +4143,7 @@ msgstr "ئاچقۇچلۇق ئېمزا"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIMEشەكلى"
@@ -4270,8 +4269,8 @@ msgstr ""
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4696,110 +4695,114 @@ msgid "Minimum number of tables to display the table filter box"
msgstr ""
#: libraries/config/messages.inc.php:281
-msgid "String that separates databases into different tree levels"
+msgid "Minimum number of databases to display the database filter box"
msgstr ""
#: libraries/config/messages.inc.php:282
-msgid "Database tree separator"
+msgid "String that separates databases into different tree levels"
msgstr ""
#: libraries/config/messages.inc.php:283
+msgid "Database tree separator"
+msgstr ""
+
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr ""
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr ""
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr ""
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr ""
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr ""
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr ""
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr ""
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr ""
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr ""
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "ئىزلانمىغان جەدۋەللەر"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr ""
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr ""
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr ""
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4807,436 +4810,436 @@ msgid ""
"recommended for non-trusted environments."
msgstr ""
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr ""
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr ""
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr ""
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr ""
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr ""
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr ""
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr ""
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr ""
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr ""
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr ""
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr ""
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr ""
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr ""
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr ""
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "ئەسلىگە كەلتۈرۈش يۇلى"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr ""
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr ""
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr ""
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr ""
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr ""
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr ""
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr ""
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr ""
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr ""
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr ""
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr ""
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr ""
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr ""
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5245,358 +5248,358 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "ساندان ئىسمى"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "جەدۋەل تەھلىلى"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr ""
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Indexes"
msgid "Show hint"
msgstr "تېزىسلار"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "SQL query"
msgid "Retain query box"
msgstr "SQL سورىقى"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5604,28 +5607,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5635,80 +5638,80 @@ msgstr ""
msgid "Password"
msgstr "پارول"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Textarea columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ئەندىز"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5716,59 +5719,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5797,82 +5800,82 @@ msgid "Signon authentication"
msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "OpenOffice جەدىۋېلى"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel دىكى CSVشەكلى"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "OpenOffice ھۆججىتى"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5892,7 +5895,7 @@ msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىن
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5900,17 +5903,17 @@ msgid ""
"configured)."
msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "مۇلازىمىتېردا ئىنكاس يوق"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "تەپسىلاتلار..."
@@ -5976,7 +5979,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "ئىسمى"
@@ -6159,26 +6162,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version"
msgid "committed on %1$s by %2$s"
msgstr "نەشىرنى قۇىماق"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version"
msgid "authored on %1$s by %2$s"
@@ -6887,18 +6890,17 @@ msgid "Display MIME types"
msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "ئاساسىي ماشىنا"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "قۇرۇلغان ۋاقتى"
@@ -7106,15 +7108,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7210,7 +7204,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7569,7 +7563,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7666,10 +7660,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7728,7 +7722,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7768,8 +7762,8 @@ msgid "Edit event"
msgstr "مەجبۇرى قوشۇش"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr ""
@@ -7826,7 +7820,7 @@ msgstr ""
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7882,7 +7876,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
@@ -7968,58 +7962,58 @@ msgstr "تۈرگە قايتىش"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "دائىملىق"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -8225,7 +8219,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -8328,12 +8322,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr ""
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8381,7 +8375,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8390,11 +8384,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8480,13 +8474,13 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "ئاكتىپ ئىزلاش"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8494,36 +8488,36 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Move column"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8531,73 +8525,73 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr ""
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "ئىزدەش"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8725,13 +8719,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Could not load default configuration from: %1$s"
msgid "Could not save configuration"
msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8741,8 +8735,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8911,18 +8905,24 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -10061,7 +10061,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -11167,37 +11167,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11206,39 +11206,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11246,21 +11246,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11269,7 +11269,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11279,37 +11279,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11317,8 +11317,8 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11350,21 +11350,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11494,7 +11502,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11707,45 +11715,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show dimension of tables"
msgid "Showing tables"
msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12042,29 +12050,29 @@ msgstr ""
msgid "Create version"
msgstr "نەشىرنى قۇىماق"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "SQL query"
msgid "Additional search criteria"
msgstr "SQL سورىقى"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 5332c4358a..644bd9a044 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-27 16:58+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:22+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: ukrainian \n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 0.8\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -21,11 +21,11 @@ msgid "Show all"
msgstr "Показати все"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Номер сторінки:"
@@ -40,30 +40,30 @@ msgstr ""
"оновлення."
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Шукати"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -73,7 +73,7 @@ msgstr "Шукати"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Вперед"
@@ -113,8 +113,8 @@ msgid "Database comment: "
msgstr "Коментар бази даних: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Коментарі таблиці"
@@ -125,14 +125,14 @@ msgstr "Коментарі таблиці"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "Стовпчик"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -140,12 +140,12 @@ msgstr "Стовпчик"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -157,9 +157,9 @@ msgstr "Тип"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Нуль"
@@ -169,7 +169,7 @@ msgstr "Нуль"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "По замовчуванню"
@@ -178,18 +178,18 @@ msgstr "По замовчуванню"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Лінки до"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Коментарі"
@@ -200,11 +200,11 @@ msgstr "Коментарі"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -222,12 +222,12 @@ msgstr "Ні"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -237,8 +237,8 @@ msgstr "Так"
msgid "View dump (schema) of database"
msgstr "Переглянути дамп (схему) БД"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "В БД не виявлено таблиць."
@@ -325,8 +325,8 @@ msgstr "Перейти до скопійованої бази даних"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -346,8 +346,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Редагувати або експортувати схему зв'язків"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -357,45 +357,44 @@ msgstr "Редагувати або експортувати схему зв'я
msgid "Table"
msgstr "Таблиця"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Рядки"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Розмір"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "використовується"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Створення"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Останнє оновлення"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Перевірено"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -485,13 +484,13 @@ msgstr "Використовувати таблиці"
msgid "SQL query on database %s :"
msgstr "SQL-запит до БД %s :"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "Виконати запит"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Доступ заборонено"
@@ -528,8 +527,8 @@ msgstr[1] "%s співпадіння у таблиці %s "
msgstr[2] "%s співпадінь у таблиці %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Переглянути"
@@ -606,11 +605,11 @@ msgstr "Вигляд %s знищено"
msgid "Table %s has been dropped"
msgstr "Таблицю %s було знищено"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Трекінг є активним."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Трекінг не активний."
@@ -624,7 +623,7 @@ msgstr ""
"%sдокументації%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Вигляд"
@@ -669,7 +668,7 @@ msgstr "Перевірити чи мають таблиці накладні в
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -678,17 +677,18 @@ msgid "Export"
msgstr "Експорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Версія для друку"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Очистити"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -731,15 +731,14 @@ msgid "Tracked tables"
msgstr "Відслідковувані таблиці"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "БД"
@@ -757,7 +756,7 @@ msgstr "Оновлено"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Статус"
@@ -952,13 +951,13 @@ msgstr "Показані закладки"
msgid "The bookmark has been deleted."
msgstr "Закладку було видалено."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Неможливо прочитати файл"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -988,7 +987,7 @@ msgstr ""
"Неможливо завантажити імпортовані плагіни, будь ласка перевірте ваше "
"інсталювання!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка %s створена"
@@ -1015,8 +1014,8 @@ msgstr ""
"phpMyAdmin не зможе закінчити цей імпорт якщо Ви на збільшите час виконання "
"PHP скриптів."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1128,9 +1127,9 @@ msgid "Close"
msgstr "Закрити"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Редагувати"
@@ -1154,7 +1153,7 @@ msgstr "Статичні дані"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Разом"
@@ -1165,12 +1164,12 @@ msgid "Other"
msgstr "Інше"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1253,13 +1252,13 @@ msgid "System swap"
msgstr "SWAP системи"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "КБ"
@@ -1317,27 +1316,27 @@ msgid "Connections"
msgstr "З'єднань"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Б"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1373,13 +1372,13 @@ msgstr "Додати графік до сітки"
#: js/messages.php:138
msgid "Please add at least one variable to the series"
-msgstr "Будь ласка додайте щонайменше одну змінну до ряду "
+msgstr "Будь ласка додайте щонайменше одну змінну до ряду"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Жодного"
@@ -1568,7 +1567,7 @@ msgstr "Тлумачити вихідні дані"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Час"
@@ -1897,7 +1896,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1911,7 +1910,7 @@ msgstr "Сховати критерії пошуку"
msgid "Show search criteria"
msgstr "Показати критерії пошуку"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
msgid "Zoom Search"
msgstr "Збільшити Пошук"
@@ -2007,7 +2006,7 @@ msgstr ""
#: js/messages.php:348
msgid "Add an option for column "
-msgstr "Додати опцію для колонки"
+msgstr "Додати опцію для колонки "
#: js/messages.php:351
msgid "Press escape to cancel editing"
@@ -2094,7 +2093,7 @@ msgstr "Змінити пароль"
msgid "More"
msgstr "Більше"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2181,63 +2180,63 @@ msgid "December"
msgstr "Грудень"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Січ"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Бер"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Квт"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "Трв"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Чрв"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Лип"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Сер"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Жов"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Лис"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Гру"
@@ -2275,32 +2274,32 @@ msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Сб"
@@ -2448,11 +2447,11 @@ msgstr ""
"Невірні права доступу до конфігураційного файлу, він не повинен бути "
"доступним для всіх!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Розмір шрифту"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "Надто багато помилок, деякі не відобразились."
@@ -2460,11 +2459,11 @@ msgstr "Надто багато помилок, деякі не відобраз
msgid "File was not an uploaded file."
msgstr "Файл не був завантаженим файлом."
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "Завантажений файл перевищує директиву upload_max_filesize в php.ini."
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2472,27 +2471,27 @@ msgstr ""
"Завантажений файл перевищує MAX_FILE_SIZE директиву, яка була вказана в HTML "
"формі."
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Завантажуваний файл був завантажений лише частково."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Відсутня тимчасова директорія."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Неможливо записати файл на диск."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Завантаження зупинено розширенням."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Невідома помилка при завантаженні файлу."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2500,11 +2499,11 @@ msgstr ""
"Помилка прі переміщенні файлу, дивись [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "Помилка при переміщенні файлу."
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "Неможливо прочитати (перемістити) завантажений файл."
@@ -2518,7 +2517,7 @@ msgstr "Індекс не визначено!"
msgid "Indexes"
msgstr "Індекси"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2556,46 +2555,46 @@ msgstr ""
"Схоже що індекси %1$s та %2$s ідентичні, тому один із них може бути "
"вилученим."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Бази Даних"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Вставити"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Операцій"
@@ -2674,13 +2673,13 @@ msgstr "Плагіни"
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Помилка"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, fuzzy, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
@@ -2688,7 +2687,7 @@ msgstr[0] "%1$d рядок задіяно."
msgstr[1] "%1$d рядків задіяно."
msgstr[2] "%1$d рядків задіяно."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
@@ -2696,7 +2695,7 @@ msgstr[0] "%1$d рядок видалено."
msgstr[1] "%1$d рядків видалено."
msgstr[2] "%1$d рядків видалено."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2740,45 +2739,45 @@ msgstr "%s було вимкнене для цього MySQL серверу."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Цей MySQL сервер не підтримує %s кодування."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "невідомий статус таблиці: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Тема %s не знайдена!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Неправильна база даних"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Неправильна назва таблиці"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "Помилка зміни назви таблиці %1$s на %2$s"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Таблицю %s було перейменовано в %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "Неможливо зберегти табличні налаштування UI"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2787,7 +2786,7 @@ msgstr ""
"Помилка очищення таблиичних налаштувань UI (див. $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2798,16 +2797,16 @@ msgstr ""
"оновлення цієї сторінки. Будь ласка, перевірте чи не була змінена структура "
"таблиці."
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Не знайдено правильного шляху до зображення для теми %s!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Намає доступного перегляду."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "прийняти його"
@@ -2859,7 +2858,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2900,13 +2899,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Загальні можливості"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2917,7 +2916,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2935,7 +2934,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2948,7 +2947,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3047,77 +3046,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Створити новий індекс"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Linestring"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Разом"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3191,20 +3190,20 @@ msgstr "Вибір сервера"
msgid "Cookies must be enabled past this point."
msgstr "З цього моменту Cookies повинні бути дозволені."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "Авторизація без паролю заборонена в настройках (див. AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "Відсутня діяльність протягом %s секунд; будь ласка, увійдіть знову"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "Не можу зареєструватися на MySQL сервері"
@@ -3249,18 +3248,18 @@ msgstr "Таблиць"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Дані"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Надмірні видатки"
@@ -3373,8 +3372,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL-запит"
@@ -3384,101 +3383,101 @@ msgstr "SQL-запит"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "Відповідь MySQL: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "Не вдалося пид'єднатися до SQL валідатора!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Тлумачити SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Не тлумачити SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "без PHP коду"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "Створити PHP код"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Оновити"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "Не перевіряти SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "Перевірити SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "Рядкове редагування цього запиту"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "в рядок"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Профілювання"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нд"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y р., %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s днів, %s годин, %s хвилин і %s секунд"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "Пропущено параметр:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "Почати"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Попередній"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Вперед"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3486,44 +3485,44 @@ msgctxt "Last page"
msgid "End"
msgstr "Кінець"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "Перейти до бази даних "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "На функціональність %s впливає відома помилка, див. %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "Клікніть, щоб змінити"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Переглянути Ваш комп'ютер:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Встановлений Вами каталог для завантаження файлів недоступний"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "Немає файлів для завантаження"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "Виконати"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Друк"
@@ -3605,70 +3604,70 @@ msgstr "обидва попередні"
#: libraries/config.values.php:167
msgid "neither of the above"
-msgstr "жоден з попередніх "
+msgstr "жоден з попередніх"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Не додатнє число"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Не від'ємне число"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Невірний номер порту"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Некоректне значення"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "Значення має дорівнювати або бути меншим аніж %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "Пропущені дані для %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "недоступний"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" потребує додаток %s"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "імпорт не буде працювати, відсутня функція (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "експорт не буде працювати, відсутня функція (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL Валідатор вимкнений"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOA розширення не знайдено"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "максимум %s"
@@ -3688,7 +3687,7 @@ msgid "Set value: %s"
msgstr "Встановити значення: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Відновити значення за замовчуванням"
@@ -3920,7 +3919,7 @@ msgstr "Запропонувати структуру таблиці"
#: libraries/config/messages.inc.php:60
msgid "Show binary contents as HEX by default"
-msgstr "Показувати двійковий вміст як HEX по замовчуванню "
+msgstr "Показувати двійковий вміст як HEX по замовчуванню"
#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
msgid "Show binary contents as HEX"
@@ -3991,7 +3990,7 @@ msgid "Character set of the file"
msgstr "Кодування файлу"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Формат"
@@ -4090,7 +4089,7 @@ msgstr "Ключ підпису"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME type"
@@ -4216,8 +4215,8 @@ msgstr "Налаштувати опції по замовчуванню"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4654,14 +4653,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Мінімальна кількість таблиць для відображення фільтра вікна таблиці"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Мінімальна кількість таблиць для відображення фільтра вікна таблиці"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Стрічка яка розділяє бази даних на різні рівні дерева"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Розділювач дерева баз даних"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4669,39 +4674,39 @@ msgstr ""
"Тільки полегшена версія; відображати бази даних у дереві (залежить від "
"розділювача що визначений нижче)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Відобразити бази даних у дереві"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "Відключити це, якщо ви бажаєте бачити всі бази даних одночасно"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Використовувати полегшену версію"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Максимальна глибина дерева таблиці"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Стрічка що розділяє таблиці на різні рівні дерева"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Розділювач дерева таблиці"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL куди веде лотип у панелі навгації"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "URL посилання логотипу"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4709,40 +4714,40 @@ msgstr ""
"Відкрити сторінку на яку посилаємось у головному вікні ([kbd]main[/kbd]) або "
"у новому ([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Ціль на яку посилається лотип"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Підсвітити сервер під курсором миші"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Включити підсвічування"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Максимальне число таблиць, що були недавно використані; поставте 0 для "
"відключення"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "Таблиці, що були недавно використані"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"Максимальне число символів, що показується у будь-якому не числовому стовбці "
"у режимі перегляду"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "Обмеження символів у стовбці"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4753,11 +4758,11 @@ msgstr ""
"FALSE ви можете забути вилогуватись з інших серверів коли є під'єднані до "
"багатьох."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Видалити всі куки під час вилоговування"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4765,11 +4770,11 @@ msgstr ""
"Визначте чи використати попердні дані для входу, або не використувати режим "
"аутентифікації через куки"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Використати збережене ім'я користувача"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4781,49 +4786,49 @@ msgstr ""
"протягом існуючої сесії, і буде видалена, як тільки ви закриєте вікно "
"браузера. Цей режим рекомендується для роботи у ненадійних умовах."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Зберігати куки авторизації"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "Визначте як довго (в секундах) дійсні куки авторизації"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "Перевірити куки авторизації"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "Подівійний розмір поля вводу тексту для LONGTEXT стовпців"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "Збільшене поле вводу тексту для LONGTEXT"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "При відображенні SQL запиту використано максимальне число символів"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "Масимальна довжина SQL що відобразиться"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "Користувач не може встановити більше значення"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Максимальне число баз даних відображене у лівому блоці і список баз даних"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Максимально баз даних"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4833,19 +4838,19 @@ msgstr ""
"містить більше рядків, "Previous" та "Next" посилання "
"будуть показані."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Максимальна кількість рядків для відображення"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Максимальна кількість таблиць що відобразиться у списку таблиць"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Максимально таблиць"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4853,11 +4858,11 @@ msgstr ""
"Вимкнути стандартне попередження, що відображається, коли відсутній mcrypt "
"для cookie аутентифікації"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "Попередження mcrypt"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4865,365 +4870,365 @@ msgstr ""
"Кількість байтів, що дозволяється виділяти під сценарій, наприклад. [kbd]32M"
"[/kbd] ([kbd]0[/kbd] без обмежень)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Ліміт пам'яті"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "Використати природній порядок для сортування імен таблиць та баз даних"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "Звичайний порядок"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Використовувати тільки піктограми, тільки текст, або обидва"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Піктограмна панель навігації"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"використовувати GZip буферизацію виводу для збільшення швидкості в HTTP "
"передачі"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip буферизація виводу"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr ""
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr ""
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr ""
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr ""
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr ""
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr ""
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr ""
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr ""
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr ""
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr ""
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr ""
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "Висота вікна запиту"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "Ширина вікна запиту (в пікселях)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "Ширина вікна запиту"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Виберіть які функції будуть використані для перетворення набору символів"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr ""
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
"Коли переглядаєте таблиці, сортування кожної таблиці залишиться збереженим"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "Запам'ятати сортування таблиці"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"Повторити заголовки кожних X комірок, [kbd]0[/kbd] відключає цю властивість"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "Повторити заголовки"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "Зберегти всі відредаговані комірки за раз"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Директорія куди експортується може бути збережена на сервері"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Зберегти теку"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Залишити пустим якщо не використовується"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "Порядок авторизації хоста"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Залишити пустим для налаштувань по замовчуванню"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "Правила авторизації хоста"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Дозволити авторизацію без паролю"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "Дозволити авторизацію для root"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Realm"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey файл конфігурації"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Використовувати метод аутентифікації"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Тип аутентифікації"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr ""
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr ""
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr ""
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr ""
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr ""
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr ""
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Any host"
msgid "Control host"
msgstr "Довільний хост"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr ""
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr ""
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr ""
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr ""
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr ""
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr ""
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr ""
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr ""
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr ""
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr ""
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr ""
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5232,360 +5237,360 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "Ім'я бази даних"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "Аналіз таблиці"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "Показувати колонки таблиці"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show PHP information"
msgid "Show Creation timestamp"
msgstr "Показати інформацію про PHP"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "Напрямок відображення по змовчуванню"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Показати сітку"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Сховати блок запиту"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5593,28 +5598,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5624,76 +5629,76 @@ msgstr ""
msgid "Password"
msgstr "Пароль"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr ""
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "Заголовок по замовчуванню"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5701,59 +5706,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5774,82 +5779,82 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Налаштування експорту бази даних"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "CSV для даних MS Excel"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr ""
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5869,21 +5874,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -5947,7 +5952,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Назва"
@@ -6103,26 +6108,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "General relation features"
msgid "committed on %1$s by %2$s"
msgstr "Загальні можливості"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "General relation features"
msgid "authored on %1$s by %2$s"
@@ -6360,7 +6365,7 @@ msgstr "по запиту"
#: libraries/display_tbl.lib.php:2838
msgid "Showing rows"
-msgstr "Показано записи "
+msgstr "Показано записи"
#: libraries/display_tbl.lib.php:2848
msgid "total"
@@ -6829,18 +6834,17 @@ msgid "Display MIME types"
msgstr "Доступні MIME-types"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Час створення"
@@ -7049,15 +7053,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL result"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Згенеровано"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL повернула пустий результат (тобто нуль рядків)."
@@ -7154,7 +7150,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7277,7 +7273,7 @@ msgstr "Набір символів"
#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
#: tbl_change.php:612
msgid "Binary"
-msgstr "Двійковий "
+msgstr "Двійковий"
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
@@ -7515,7 +7511,7 @@ msgstr "Створити PDF-файл"
msgid "Displaying Column Comments"
msgstr "Показувати коментарі стовпців"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Перетворення МІМЕ-типу бровзером"
@@ -7616,10 +7612,10 @@ msgid "Variable"
msgstr "Змінна"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Значення"
@@ -7678,7 +7674,7 @@ msgstr "Згенерувати пароль"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7715,8 +7711,8 @@ msgid "Edit event"
msgstr "Редагувати подію"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "Помилка при обробці запиту"
@@ -7768,7 +7764,7 @@ msgstr "По завершенні збереження"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7822,7 +7818,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Неправильний тип порядку: \"%s\""
@@ -7894,35 +7890,35 @@ msgstr "Тип безпеки"
msgid "SQL data access"
msgstr "доступ SQL даних"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "Ви повинні вказати назву порядку"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "Неправильний напрямок \"%s\" задали для параметру."
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -7930,22 +7926,22 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "Результати виконання порядку %s"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "Виконати порядок"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "Параметри порядку"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Функція"
@@ -8122,7 +8118,7 @@ msgstr "Зміст"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Атрибути"
@@ -8223,12 +8219,12 @@ msgid "Toggle scratchboard"
msgstr "ввімкнути чорновик (scratchboard)"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Невідома мова: %1$s."
@@ -8274,7 +8270,7 @@ msgstr "Запустіть SQL запит/запити на сервері %s"
msgid "Run SQL query/queries on database %s"
msgstr "Виконати SQL запит/запити у базі даних %s"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Очистити"
@@ -8283,11 +8279,11 @@ msgstr "Очистити"
msgid "Columns"
msgstr "Колонки"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Закладка на даний SQL запит"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Надати всім користувачам доступ до цієї закладки"
@@ -8388,13 +8384,13 @@ msgstr ""
"Не можу запустити перевірку SQL. Прошу проконтролювати чи інстальовані "
"необхідні PHP extensions як описано в %sдокументації%s."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "Трекінг є активним."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8406,7 +8402,7 @@ msgstr ""
"\") або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними "
"зворотню косу риску (наприклад, '\\\\xyz' чи 'a\\'b')."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -8414,19 +8410,19 @@ msgstr ""
"Для значень за замовчуванням, введіть лише значення, без використання "
"зворотніх слешів чи лапок, у такому форматі: a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Індекс"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add into comments"
msgid "Move column"
msgstr "Додати коментар"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -8435,11 +8431,11 @@ msgstr ""
"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
"%sописи перетворень%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Опції перетворення"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8451,78 +8447,78 @@ msgstr ""
"цих значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\"
"\\xyz' чи 'a\\'b')."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Немає"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Первинний"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "ПовнТекст"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "Після %s"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "Додати %s стовпчик(ів)"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "Необхідно вибрати принаймі один Стовпчик для показу"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Шукати"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8689,11 +8685,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8703,8 +8699,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8881,20 +8877,26 @@ msgstr ""
msgid "No databases"
msgstr "БД відсутні"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Alter table order by"
+msgid "Filter databases by name"
+msgstr "Змінити порядок таблиці"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Alter table order by"
msgid "Filter tables by name"
msgstr "Змінити порядок таблиці"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create a page"
msgctxt "short form"
msgid "Create table"
msgstr "Створити нову сторінку"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Прошу вибрати БД"
@@ -10057,7 +10059,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Параметр"
@@ -11173,37 +11175,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11212,39 +11214,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11252,21 +11254,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11275,7 +11277,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11285,37 +11287,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11325,8 +11327,8 @@ msgstr ""
msgid "Wrong data"
msgstr "БД відсутні"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11360,21 +11362,29 @@ msgstr ""
msgid "Validated SQL"
msgstr "Перевірити SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL result"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Згенеровано"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Мітка"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11388,7 +11398,7 @@ msgstr "Через велику довжину, це поле не мож
#: tbl_change.php:860
msgid "Binary - do not edit"
-msgstr "Двійкові дані - не редагуються "
+msgstr "Двійкові дані - не редагуються"
#: tbl_change.php:1065
msgid "Insert as new row"
@@ -11506,7 +11516,7 @@ msgstr "Значення"
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11719,45 +11729,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr "Перевір цілісність даних на рівні посилань:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Показати таблиці"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Простір, що використовується"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Використання"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Ефективність"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Статистика рядка"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "динамічний"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Довжина рядка"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "Розмір рядка "
+msgstr "Розмір рядка"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12068,31 +12078,31 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Сховати критерії пошуку"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr ""
@@ -13200,7 +13210,7 @@ msgstr ""
#: libraries/advisory_rules.txt:436
msgid "Max InnoDB log size"
-msgstr "Максимальний розмір журналу InnoDB "
+msgstr "Максимальний розмір журналу InnoDB"
#: libraries/advisory_rules.txt:439
msgid "The InnoDB log file size is inadequately large."
diff --git a/po/ur.po b/po/ur.po
index 15e999fa24..2805512799 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-03-27 16:34+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:19+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Urdu \n"
"Language: ur\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 0.8\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -23,11 +23,11 @@ msgid "Show all"
msgstr "تمام دکھائیں"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "صفحہ نمبر:"
@@ -41,30 +41,30 @@ msgstr ""
"کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "تلاش"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -74,7 +74,7 @@ msgstr "تلاش"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "جائیں"
@@ -112,11 +112,11 @@ msgstr "کوائفیہ $1%s بن گئی ہے۔"
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "کوائفیہ تبصرہ:"
+msgstr "کوائفیہ تبصرہ: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "جدول تبصرے"
@@ -127,16 +127,16 @@ msgstr "جدول تبصرے"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Command"
msgid "Column"
msgstr "کالم"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -144,12 +144,12 @@ msgstr "کالم"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "قِسم"
@@ -161,9 +161,9 @@ msgstr "قِسم"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "خالی"
@@ -173,7 +173,7 @@ msgstr "خالی"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "طے شدہ"
@@ -182,18 +182,18 @@ msgstr "طے شدہ"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "ربط بطرف"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "تبصرہ"
@@ -204,11 +204,11 @@ msgstr "تبصرہ"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -226,12 +226,12 @@ msgstr "نہیں"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -241,8 +241,8 @@ msgstr "ہاں"
msgid "View dump (schema) of database"
msgstr "کوائفیہ کی ڈمپ (شجرہ) منظر کریں"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "کوائفیہ میں کوئی جدول نہیں مِلا۔"
@@ -329,8 +329,8 @@ msgstr "نقل شدہ کوائفیہ پر جائیں"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -350,8 +350,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -361,46 +361,45 @@ msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں"
msgid "Table"
msgstr "جدول"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "صفیں"
# db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "ناپ"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "استعمال میں ہے"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "بنائیں"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "آخری دفعہ کی تازہ کاری"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "آخری دفعہ کی پڑتال"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -490,13 +489,13 @@ msgstr "جداول استعمال کریں"
msgid "SQL query on database %s :"
msgstr "کوائفیہ کے لیے %s SQL طلب"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "طلب بھیجیں"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "رسائی نہیں دی گئی"
@@ -532,8 +531,8 @@ msgstr[0] "%s جدول کے ساتھ مشابہ%s"
msgstr[1] "%s جدول کے ساتھ مشابہات%s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "براؤز"
@@ -613,11 +612,11 @@ msgstr "جدول نقل %s چھوڑا جاچکا ہے۔"
msgid "Table %s has been dropped"
msgstr "جدول %s چھوڑا جاچکا ہے"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "کھوج فعال ہے۔"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "کھوج غیر فعال ہے۔"
@@ -630,7 +629,7 @@ msgstr ""
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "نقل جدول"
@@ -675,7 +674,7 @@ msgstr "اوور ہیڈ جداول کی پڑتال کریں"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -684,17 +683,18 @@ msgid "Export"
msgstr "برآمد"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "چھپائی منظر"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "خالی"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -741,15 +741,14 @@ msgid "Tracked tables"
msgstr "کھوج شدہ جداول"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "کوائفیہ"
@@ -767,7 +766,7 @@ msgstr "تازہ کی گئی"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "حالت"
@@ -973,13 +972,13 @@ msgstr "نشانی دکھاتے ہوئے"
msgid "The bookmark has been deleted."
msgstr "نشانی حذف ہوچکا ہے۔"
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "مسل قابل مطالعہ نہیں ہے"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1007,7 +1006,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "درآمد پلگ ان لوڈ نہیں ہوسکے، اپنی تنصیب کا پڑتال کریں!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "نشانی %s بنایا گیا"
@@ -1033,8 +1032,8 @@ msgstr ""
"بہرحال آخری دفعہ کوائف صرفی نہیں ہوا، اس کا مطلب ہے کہ phpMyAdmin اس درآمد "
"کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔"
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1157,9 +1156,9 @@ msgid "Close"
msgstr "بند کریں"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "تدوین"
@@ -1187,7 +1186,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "میزان"
@@ -1198,12 +1197,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1294,13 +1293,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "میگا بائٹ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "کلو بائٹ"
@@ -1362,27 +1361,27 @@ msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "بائٹ"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "گیگا بائٹ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "ٹیرا بائٹ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "پیٹا بائٹ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "ایگزا بائٹ"
@@ -1430,9 +1429,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr ""
@@ -1623,7 +1622,7 @@ msgstr "SQL کی تفصیل بتائیں"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "وقت"
@@ -1985,7 +1984,7 @@ msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1999,7 +1998,7 @@ msgstr "تلاش کسوٹی چھپائیں"
msgid "Show search criteria"
msgstr "تلاش کسوٹی دکھائیں"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2096,7 +2095,7 @@ msgstr ""
#: js/messages.php:348
msgid "Add an option for column "
-msgstr "کالم کے لیے ایک اختیار اضافہ کریں"
+msgstr "کالم کے لیے ایک اختیار اضافہ کریں "
#: js/messages.php:351
msgid "Press escape to cancel editing"
@@ -2179,7 +2178,7 @@ msgstr "پاس ورڈ تبدیل کریں"
msgid "More"
msgstr "مزید"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2272,63 +2271,63 @@ msgid "December"
msgstr "دسمبر"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "جنوری"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "فروری"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "مارچ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "اپریل"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "مئی"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "جون"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "جولائی"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "اگست"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "ستمبر"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "اکتوبر"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "نومبر"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "دسمبر"
@@ -2369,32 +2368,32 @@ msgid "Sun"
msgstr "اتوار"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "پیر"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "منگل"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "بدھ"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "جمعرات"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "جمعہ"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "ہفتہ"
@@ -2536,11 +2535,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "فانٹ سائز"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2548,38 +2547,38 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔"
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "اپ لوڈ مسل نے HTML فارم میں مخصوص MAX_FILE_SIZE ہدایات سے تجاوز کی۔"
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔"
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "ایک عارضی پوشہ موجود نہیں ہے۔"
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "ڈسک پر مسل تحریر ناکام ہوا۔"
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔"
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔"
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2587,11 +2586,11 @@ msgstr ""
"اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [a@./Documentation."
"html#faq1_11@Documentation]عمومی سوالات 1.11[/a]"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2605,7 +2604,7 @@ msgstr "کوئی اشاریہ موجود نہیں!"
msgid "Indexes"
msgstr "اشاریے"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2643,46 +2642,46 @@ msgstr ""
"اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا "
"جائے گا۔"
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "کوائفیے"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "سرور"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "ساخت"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "داخل کریں"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "عملیات"
@@ -2761,27 +2760,27 @@ msgstr ""
msgid "Engines"
msgstr ""
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "نقص"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d صف مناثر ہوئے۔"
msgstr[1] "%1$d صفیں متاثر ہوئیں۔"
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d صف حذف ہوئے۔"
msgstr[1] "%1$d صفیں حذف ہوئیں۔"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2830,52 +2829,52 @@ msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔"
msgid "This MySQL server does not support the %s storage engine."
msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔"
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr ""
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, php-format
msgid "Source database `%s` was not found!"
msgstr ""
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "خیالیہ %s نیہں ملا!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "غلط کوائفیہ"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "غلط جدول نام"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2883,16 +2882,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "کوئی پیش منظر دستیاب نہیں ہے۔"
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "اسے لیں"
@@ -2944,7 +2943,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2985,13 +2984,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "General relation features"
msgid "A date, supported range is %1$s to %2$s"
msgstr "جنرل ریلیشن فیچرز"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3002,7 +3001,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3020,7 +3019,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3033,7 +3032,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3132,77 +3131,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "تخلیق کیا گیا"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "سطریں کے آخر میں"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total"
msgctxt "spatial types"
msgid "Spatial"
msgstr "میزان"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3275,20 +3274,20 @@ msgstr "سرور انتخاب"
msgid "Cookies must be enabled past this point."
msgstr "اس جگہ کوکی لازمی اہل ہوں۔"
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "پاس ورڈ کے بغیر لاگ ان تشکیل میں ممنوع ہے (دیکھیں AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "%s سیکنڈ میں کوئی سرگرمی نہیں ہوئی، دوبارہ لاگ ان کریں۔"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL سرور میں لاگ ان نہیں کرسکتا"
@@ -3332,18 +3331,18 @@ msgstr "جداول"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "کوائف"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "مجموعی"
@@ -3454,8 +3453,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "انگریزی"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL طلب"
@@ -3465,81 +3464,81 @@ msgstr "SQL طلب"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL نے کہا:"
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "SQL جواز دہندہ سے جڑت ناکام ہوا!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "SQL کی تفصیل بتائیں"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "SQL وضاحت کو چھوڑیں"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP کوڈ کے بغیر"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP کوڈ بنائیں"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "تازہ کریں"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL توثیق چھوڑیں"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL کی توثیق کریں"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "اس طلب کی ان لائن تدوین"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "ان لائن"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "تفصیلات"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "اتوار"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y پر %I:%M %p"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3547,7 +3546,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "شروع"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3556,7 +3555,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "پچھلا"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3565,7 +3564,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "اگلا"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3573,46 +3572,46 @@ msgctxt "Last page"
msgid "End"
msgstr "اختتام"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "کوائفیہ میں جائیں "%s"."
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "انتخاب کے لیے کلک کریں"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "اپنے کمپیوٹر کو براؤز کریں:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "چھاپیں"
@@ -3696,68 +3695,68 @@ msgstr "دونوں بالا"
msgid "neither of the above"
msgstr "بالا میں سے کوئی بھی نہیں"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "ایک مثبت ہندسہ نہیں ہے"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "ایک غیر منفی ہندسہ نہیں ہے"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "ایک درست دہانہ ہندسہ نہیں ہے"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "نادرست قدر"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "قدر مساوی یا کم ہو اس سے %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "کوائف نہیں ملا برائے %s"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "دستیاب نہیں ہے"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "\"%s\" درکار %s توسیع"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "درآمد کارآمد نہیں ہے ایک عمل موجود نہیں ہے (%s)"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "برآمد کارآمد نہیں ہے ایک عمل موجود نہیں ہے (%s)"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL توثیق کار غیرفعال ہے"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "SOAP توسیع نہیں ملا"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "زیادہ سے زیادہ %s"
@@ -3776,7 +3775,7 @@ msgid "Set value: %s"
msgstr "قدر سیٹ کریں: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "طے شدہ قدر بحال کریں"
@@ -4075,7 +4074,7 @@ msgid "Character set of the file"
msgstr "مسل کے لیے حروف کی سیٹ"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "وضع"
@@ -4174,7 +4173,7 @@ msgstr "سرنامہ کلید"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME قسم"
@@ -4298,8 +4297,8 @@ msgstr "طے شدہ اختیارات کی تخصیص کریں"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4732,14 +4731,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "جدول فلٹر خانہ دکھانے کے لیے جداول کی کم سے کم تعداد"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "جدول فلٹر خانہ دکھانے کے لیے جداول کی کم سے کم تعداد"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "وہ لفظ جو کوائفیہ کو مختلف شجرہ سطحات میں سے جدا کررہا ہو"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "کوائفیہ شجرہ جدا کرنے والا"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -4747,39 +4752,39 @@ msgstr ""
"صرف ہلکے ورژن; کوائفیے شجرہ میں دکھائیں(نیچے بیان کیے گئے جدا کرنے والے لفظ "
"سے متعین ہوتے ہیں)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "کوائفیے ایک شجرہ میں دکھائیں"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "اگر آپ ایک ہی دفعہ تمام کوائفیے دیکھنا چاہتے ہیں تو اسے غیر فعال کریں"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "ہلکا ورژن استعمال کریں"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "جدول شجرہ سطحات کی زیادہ سے زیادہ تعداد"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "وہ لفظ جو جداول کے شجرہ سطحات کو جدا کرتا ہے"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "جدول جدا کرنے والا لفظ"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "URL جہاں گشت جھروکہ میں علامت اشارہ کردے"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "علامت ربط URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -4787,42 +4792,42 @@ msgstr ""
"ربط شدہ صفحہ کو مرکزی دریچہ میں کھولیں ([kbd]main[/kbd]) یا ایک نئے میں "
"([kbd]new[/kbd])"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "علامت ربط ہدف"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "ماؤس کرسر کے ساتھ سرور کو نمایا کریں"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "نمایاں کرنے کو فعال کریں"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "بغیر کھوج جداول"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
"براؤز منظر میں ایک غیر ہندسی کالم میں زیاد سے زیادہ حروف کی تعداد جو دکھائی "
"جائے"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "کالم حروف کی حد مقرر کریں"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4832,11 +4837,11 @@ msgstr ""
"تو لاگ آؤٹ صرف حالیہ سرور کے لیے ہوگا۔ یہ مقرر کرنے سے FALSE یہ آسانی ہوجاتی "
"ہے کہ جب کثیر سرور جڑے ہوئے ہوں تو ان سے لاگ آؤٹ ہونا مسئلہ نہیں ہوتا۔"
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "لاگ آؤٹ پر تمام کوکی کو حذف کریں"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -4844,11 +4849,11 @@ msgstr ""
"کوکی توثیق موڈ میں پچھلے لاگ ان کو پھر سے فعال کرنے یا نہ کرنے کے بارے وضاحت "
"کریں"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "صارف نام یاد کریں"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4859,51 +4864,51 @@ msgstr ""
"ہے یہ صرف اسی دورانیہ کے لیے ہے اور براؤزر دریچہ بند ہوتے ہوتے ہی یہ حذف "
"ہوجائے گا۔ یہ انجانے ماحول کے لیے موزوں ہے۔"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "لاگ ان کوکی ذخیرہ"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "سیکنڈ میں بتائیں کہ ایک لاگ ان کوکی کب تک موجود ہو"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "لاگ ان کوکی کب تک موجود ہو"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "LONGTEXT کالم کے لیے متنی خانہ دگنا سائز کریں"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "LONGTEXT کے لیے متنی خانہ بڑا کریں"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
"جب ایک SQL طلب دکھائی جائے تو زیادہ سے زیادہ حروف کی تعداد جو استعمال ہو"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "SQL کی زیادہ سے زیادہ لمبائی جو دکھائی جائے"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "صارفین اسے سے زیادہ قدر مقرر نہیں کرسکتے"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"کوائفیہ فہرست اور بائیں جھروکے میں کوائفیہ کی زیادہ سے زیادہ تعداد جو دکھائی "
"جائے"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "زیادہ سے زیادہ کوائفیے"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4912,19 +4917,19 @@ msgstr ""
"کسی نتیجہ کو دکھاتے ہوئے صفوں کی تعداد۔ اگر نتیجہ میں زیادہ صفیں موجود ہوں، "
""پچھلا" اور"اگلا" روابط دکھائے جائیں گے۔"
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "زیادہ سے زیادہ جداول"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
@@ -4932,11 +4937,11 @@ msgstr ""
"اگر کوکی توثیق کے لیے mcrypt موجود نہ ہونے کی تنبیہ غیر فعال کرنے کے لیے طے "
"شدہ تنبیہ کو غیرفعال کریں"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt تنبیہ"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -4944,45 +4949,45 @@ msgstr ""
"ایک سکرپٹ کو کو جگہ مختص کرنے کے لیے بائٹ کی تعداد لکھیں جیسا کہ [kbd]32M[/"
"kbd] ([kbd]0[/kbd] بغیر حد کے)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "میموری حد"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
#, fuzzy
#| msgid "These are Edit, Inline edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links"
msgstr "یہ تدوین، ان لائن تدوین، نقل اور حذف روابط ہیں"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "جدول اور کوائفیہ نام ترتیب کے لیے قدرتی انداز استعمال کریں"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "قدرتی ترتیب"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "صرف شبیہے، صرف متن یا دوتوں استعمال کریں"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "شبیہاتی گشت بار"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "HTTP منتقلی رفتار بڑھانے کے لیے GZip آؤٹ پٹ بفر استعمال کریں"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip آؤٹ پٹ بفر"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4990,19 +4995,19 @@ msgstr ""
"[kbd]SMART[/kbd] - اس اقسام کی کالموں کے لیے نزولی ترتیب type TIME, DATE, "
"DATETIME اور TIMESTAMP, بصورت دیگر صعودی ترتیب"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "طے شدہ چھانٹی ترتیب"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "MySQL کوائفیہ سے جڑنے کے لیے بہتر جڑت استعمال کریں"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "بہتر جوڑ"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
@@ -5011,23 +5016,23 @@ msgstr ""
"اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ "
"تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "شبیہاتی جدول عملیات"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "BLOB اور BINARY کالم تدوین کے لیے ممنوع کریں"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "ثنائی کالم کو ممنوع کریں"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -5037,112 +5042,112 @@ msgstr ""
"درکار ہوگی). غیرفعال کرنے کی صورت میں یہ جاوا سکرپٹ فنکشن کو استعمال کرتے "
"ہوئے طلب لاگ دکھاتا ہے (دریچہ بند ہونے کی صورت میں ضائع ہوجاتی ہے)."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "مستقل طلب لاگ"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "لاگ میں کتنے طلب رکھے جانے چاہیں"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "طلب لاگ کی لمبائی"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "جب ایک نیا طلب دریچہ کھولا جائے گا تو جدول نظر آئے گی"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "طے شدہ طلب دریچہ جدول"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "طلب دریچہ اونچائی(پکسل میں)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "طلب دریچہ اونچائی"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "طلب دریچہ چوڑائی(پکسل میں)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "طلب دریچہ چوڑائی"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "حروف بدلنے کے لیے کونسے فنکش استعمال ہوں کی انتخاب کریں"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "ری کوڈ انجن"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr ""
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
"سرخی کو ہرX خانے کے لیے دہرائیں, [kbd]0[/kbd] اس خاصیت کو غیر فعال کرتا ہے"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "دہرانے کے لیے سرخیاں"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "وہ پوشہ جس پر برآمد سرور میں محفوظ کیے جاسکیں"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "پوشہ محفوظ کریں"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "استعمال نہ ہونے کی صورت میں خالی چھوڑ دیں"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "ہوسٹ توثیق حکم"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "طے شدہ کے لیے خالی چھوڑ دیں"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "ہوسٹ توثیق قاعدے"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "پاس ورڈ کے بغیر لاگ ان کی اجازت دیں"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "منتظم لاگ ان کی اجازت دیں"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "HTTP بنیادی توثیق اختیار نام جو دکھائی جائے جب HTTP توثیق کررہا ہو"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP اختیار"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5151,19 +5156,19 @@ msgstr ""
"تشکیل مسل کے لیے جگہ [a@http://swekey.com]SweKey ہاروئیر توثیق[/a] (آپ کے "
"منتظم دستاویز میں موجود نہیں ہے; مجوزہ: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey تشکیل مسل"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "توثیق کا طریقہ جو استعمال ہو"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "توثیق قسم"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5171,42 +5176,42 @@ msgstr ""
"نہیں کے لیے خالی چھوڑیں@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"معاونت، مجوزہd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "جدول نشان کریں"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr ""
"کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "کالم معلومات جدول"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "جڑنے کو MySQL سرور کے لیے سکیڑیں"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "جڑنے کو سکیڑیں"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "سرور سے کیسے جڑا جائے, چھوڑ دیں [kbd]tcp[/kbd] اگر پتا نہیں"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "جڑنے کی قسم"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "صارف پاس ورڈ کنٹرول"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5214,31 +5219,31 @@ msgstr ""
"ایک خاص MySQL صارف مقررہ اجازت نامہ کے ساتھ تشکیل دیا گیا ہے, مزید معلومات "
"یہاں موجود ہیں[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "صارف کو کنٹرول کریں"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "صارف کو کنٹرول کریں"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "جب کوائفیہ فہرست دکھا رہے ہوں تو جداول کی گنتی کریں"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "حداول کی گنتی کریں"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5246,11 +5251,11 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "ڈیزائنر جدول"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5258,71 +5263,71 @@ msgstr ""
"مزید معلومات یہاں موجود ہے [a@http://sf.net/support/tracker.php?aid=1849494]"
"PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA کی استعمال کو غیر فعال کریں"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"PHP کو کونسی قسم استعمال کی جائے; آپ استعمال کریں mysqli اگر اس کی معاونت ہے"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "PHP کی قسم جو اسعتمال کی جائے"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "وہ کوائفیے چھپائیں جو ریگولر ایکسپریشن سے مطابقت رکھتے ہیں (PCRE)"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "کوائفیے چھپائیں"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr ""
"SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL طلب لاگ جدول"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "جہاں MySQL سرور چل رہا ہے اس کا نام"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "سرور نام"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "لاگ آؤٹ URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "پاس ورڈ کے بغیر جڑنے کی کوشش کریں"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "پاس ورڈ کے بغیر جڑیں"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5331,49 +5336,49 @@ msgid ""
"alphabetical order."
msgstr ""
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr ""
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr ""
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "Database"
msgid "Database name"
msgstr "ڈیٹا بیس"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr ""
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "ve blank for no column comments/mime types, suggested: [kbd]_column_info[/"
@@ -5384,80 +5389,80 @@ msgid ""
msgstr ""
"کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "صارف نام یاد کریں"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr ""
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr ""
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr ""
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr ""
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr ""
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr ""
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr ""
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr ""
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr ""
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -5468,69 +5473,69 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr ""
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr ""
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr ""
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr ""
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
@@ -5541,165 +5546,165 @@ msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr ""
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr ""
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr ""
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr ""
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr ""
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr ""
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
msgid "Show Creation timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
msgid "Show Last check timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "طے شدہ دکھانے کی سمت"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr ""
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr ""
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "گرِڈ دکھائیں"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr ""
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr ""
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr ""
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "طلب خانہ چھپائیں"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr ""
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5707,28 +5712,28 @@ msgid ""
"alias, the table name itself stays unchanged"
msgstr ""
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr ""
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr ""
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr ""
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5738,80 +5743,80 @@ msgstr ""
msgid "Password"
msgstr ""
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr ""
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Textarea columns"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr ""
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default"
msgid "Default title"
msgstr "ڈیفالٹ"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5819,59 +5824,59 @@ msgid ""
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr ""
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr ""
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr ""
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr ""
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr ""
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr ""
@@ -5892,84 +5897,84 @@ msgid "Signon authentication"
msgstr ""
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr ""
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr ""
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr ""
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr ""
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr ""
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr ""
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr ""
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not open file: %s"
msgid "Could not connect to Drizzle server"
msgstr "مسل نہیں کھول سکتا: %s"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr ""
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5989,21 +5994,21 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr ""
@@ -6067,7 +6072,7 @@ msgstr ""
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr ""
@@ -6229,26 +6234,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr ""
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "General relation features"
msgid "committed on %1$s by %2$s"
msgstr "جنرل ریلیشن فیچرز"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "General relation features"
msgid "authored on %1$s by %2$s"
@@ -6935,18 +6940,17 @@ msgid "Display MIME types"
msgstr ""
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr ""
@@ -7154,15 +7158,7 @@ msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔"
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr ""
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr ""
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7260,7 +7256,7 @@ msgstr ""
msgid "DocSQL"
msgstr ""
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr ""
@@ -7619,7 +7615,7 @@ msgstr ""
msgid "Displaying Column Comments"
msgstr ""
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr ""
@@ -7718,10 +7714,10 @@ msgid "Variable"
msgstr ""
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr ""
@@ -7780,7 +7776,7 @@ msgstr ""
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7820,8 +7816,8 @@ msgid "Edit event"
msgstr "نیا صارف اضافہ کریں"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Error in Processing Request"
@@ -7881,7 +7877,7 @@ msgstr "داخل کرنا مکمل ہوا"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7937,7 +7933,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
@@ -8023,57 +8019,57 @@ msgstr "سلامتی"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr ""
@@ -8279,7 +8275,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr ""
@@ -8384,12 +8380,12 @@ msgid "Toggle scratchboard"
msgstr ""
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "rtl"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -8435,7 +8431,7 @@ msgstr ""
msgid "Run SQL query/queries on database %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr ""
@@ -8446,11 +8442,11 @@ msgstr ""
msgid "Columns"
msgstr "آراء-رائے"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr ""
@@ -8536,13 +8532,13 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking is active."
msgid "Tracking of %s is activated."
msgstr "کھوج فعال ہے۔"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8550,36 +8546,36 @@ msgid ""
"(for example '\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr ""
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr ""
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Move column"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr ""
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8587,75 +8583,75 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr ""
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr ""
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr ""
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr ""
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, php-format
msgid "after %s"
msgstr ""
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے کیلئے۔"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr ""
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr ""
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr ""
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "تلاش"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8783,11 +8779,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr ""
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8797,8 +8793,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr ""
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr ""
@@ -8967,18 +8963,24 @@ msgstr ""
msgid "No databases"
msgstr ""
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Invalid table name"
+msgid "Filter databases by name"
+msgstr "غلط جدول نام"
+
+#: navigation.php:272
#, fuzzy
#| msgid "Invalid table name"
msgid "Filter tables by name"
msgstr "غلط جدول نام"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr ""
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr ""
@@ -10121,7 +10123,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "ابتدائیہ صفحہ کی تخصیص کریں"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
@@ -11236,37 +11238,37 @@ msgstr ""
msgid "Show form"
msgstr ""
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr ""
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr ""
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr ""
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr ""
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11275,39 +11277,39 @@ msgid ""
"belongs to an ISP where thousands of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
"you don't need to remember it."
msgstr ""
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
msgstr ""
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr ""
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr ""
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11315,21 +11317,21 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11338,7 +11340,7 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11348,37 +11350,37 @@ msgid ""
"http[/kbd]."
msgstr ""
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr ""
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr ""
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr ""
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr ""
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
@@ -11388,8 +11390,8 @@ msgstr ""
msgid "Wrong data"
msgstr "کوائف"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr ""
@@ -11421,21 +11423,29 @@ msgstr ""
msgid "Validated SQL"
msgstr ""
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr ""
+
+#: sql.php:935
+msgid "Generated by"
+msgstr ""
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr ""
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "Database %s has been dropped."
msgid "The columns have been moved successfully."
@@ -11565,7 +11575,7 @@ msgstr ""
msgid "Table %s already exists!"
msgstr ""
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr ""
@@ -11780,45 +11790,45 @@ msgstr ""
msgid "Check referential integrity:"
msgstr ""
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Count tables"
msgid "Showing tables"
msgstr "حداول کی گنتی کریں"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr ""
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr ""
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr ""
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr ""
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr ""
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr ""
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr ""
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr ""
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -12121,31 +12131,31 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "تلاش کسوٹی چھپائیں"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/po/uz.po b/po/uz.po
index 369f6be70a..12c1c843e9 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2010-07-22 02:31+0200\n"
-"Last-Translator: Marc Delisle \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:09+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: uzbek_cyrillic \n"
"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,13 +20,13 @@ msgid "Show all"
msgstr "Барчасини кўрсатиш"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
-msgstr "Саҳифа рақами: "
+msgstr "Саҳифа рақами:"
#: browse_foreigners.php:159
msgid ""
@@ -38,30 +38,30 @@ msgstr ""
"ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Қидириш"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "Қидириш"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
@@ -106,11 +106,11 @@ msgstr "%1$s маълумотлар базаси тузилди."
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "Маълумотлар базасига изоҳ:"
+msgstr "Маълумотлар базасига изоҳ: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Жадвал изоҳи"
@@ -121,16 +121,16 @@ msgstr "Жадвал изоҳи"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Майдон номлари"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -138,12 +138,12 @@ msgstr "Майдон номлари"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Тур"
@@ -155,9 +155,9 @@ msgstr "Тур"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -167,7 +167,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Андоза"
@@ -176,18 +176,18 @@ msgstr "Андоза"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Алоқалар"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Изоҳлар"
@@ -198,11 +198,11 @@ msgstr "Изоҳлар"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -220,12 +220,12 @@ msgstr "Йўқ"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -235,8 +235,8 @@ msgstr "Ҳа"
msgid "View dump (schema) of database"
msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас."
@@ -327,8 +327,8 @@ msgstr "Нусха олинган маълумотлар базасига ўти
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -353,8 +353,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Алоқалар схемаси"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -362,47 +362,46 @@ msgstr "Алоқалар схемаси"
#: server_privileges.php:2071 server_privileges.php:2340
#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711
msgid "Table"
-msgstr "Жадвал "
+msgstr "Жадвал"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Қаторларсони"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Ҳажми"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "ишлатилмоқда"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Тузиш"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Охирги янгиланиш"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Охирги текширув"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -495,15 +494,15 @@ msgstr "Жадвалларни ишлатиш"
#: db_qbe.php:663
#, php-format
msgid "SQL query on database %s :"
-msgstr "\"%s\" маълумотлар базасига SQL-сўров: "
+msgstr "\"%s\" маълумотлар базасига SQL-сўров:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "сўровни бажариш"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Рухсат берилмади"
@@ -538,8 +537,8 @@ msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s
msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Кўриб чиқиш"
@@ -625,11 +624,11 @@ msgstr "\"%s\" намойиши ўчирилди"
msgid "Table %s has been dropped"
msgstr "\"%s\" жадвали ўчирилди"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Кузатиш фаол."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Кузатиш фаол эмас."
@@ -643,7 +642,7 @@ msgstr ""
"учун %sдокументацияга%s қаранг."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Намойиш"
@@ -668,7 +667,7 @@ msgstr "\"%s\" - MySQL серверидаги андозавий маълумо
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
-msgstr "Белгиланганларни: "
+msgstr "Белгиланганларни:"
#: db_structure.php:682 libraries/display_tbl.lib.php:2989
#: server_databases.php:292 server_privileges.php:781
@@ -688,7 +687,7 @@ msgstr "Оптималлаштириш лозим бўлгн жадваллар
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -697,17 +696,18 @@ msgid "Export"
msgstr "Экспорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Чоп этиш версияси"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Тозалаш"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -756,15 +756,14 @@ msgid "Tracked tables"
msgstr "Кузатилган жадваллар"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Маълумотлар базаси"
@@ -782,7 +781,7 @@ msgstr "Янгиланди"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Ҳолат"
@@ -849,7 +848,7 @@ msgstr "Индекс(лар)ни сақлаш"
#: export.php:177 export.php:202 export.php:705
#, php-format
msgid "Insufficient space to save the file %s."
-msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас. "
+msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас."
#: export.php:327
#, php-format
@@ -989,13 +988,13 @@ msgstr "Хатчўпларни кўрсатиш"
msgid "The bookmark has been deleted."
msgstr "Хатчўп ўчирилди."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Файлни ўқиб бўлмади!!"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1027,7 +1026,7 @@ msgstr ""
"Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/"
"export каталогини текширинг."
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "\"%s\" хатчўпи тузилди"
@@ -1055,8 +1054,8 @@ msgstr ""
"Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча "
"phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1110,7 +1109,7 @@ msgstr ""
#: js/messages.php:37
msgid "This operation could take a long time. Proceed anyway?"
-msgstr "Ушбу операцияни бажариш узоқ вақт талаб қилиши мумкин. Давом этсинми? "
+msgstr "Ушбу операцияни бажариш узоқ вақт талаб қилиши мумкин. Давом этсинми?"
#: js/messages.php:40
msgid "Missing value in the form!"
@@ -1186,9 +1185,9 @@ msgid "Close"
msgstr "Ёпиш"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Таҳрирлаш"
@@ -1216,7 +1215,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Жами"
@@ -1227,12 +1226,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1325,13 +1324,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "КБ"
@@ -1399,27 +1398,27 @@ msgid "Connections"
msgstr "Уланишлар"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Байт"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "ЭБ"
@@ -1468,9 +1467,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Йўқ"
@@ -1664,7 +1663,7 @@ msgstr "Сўров таҳлили"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Вақт"
@@ -2024,7 +2023,7 @@ msgstr "SQL сўровлари қутиси"
#: js/messages.php:285 tbl_row_action.php:21
msgid "No rows selected"
-msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак. "
+msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак."
#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
@@ -2045,7 +2044,7 @@ msgstr "%d сони тўғри қатор рақами эмас!"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2063,7 +2062,7 @@ msgstr "SQL сўровлари қутиси"
msgid "Show search criteria"
msgstr "SQL сўровлари қутиси"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2253,7 +2252,7 @@ msgstr "Паролни ўзгартириш"
msgid "More"
msgstr "Душ"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2367,27 +2366,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2395,37 +2394,37 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Дек"
@@ -2474,32 +2473,32 @@ msgid "Sun"
msgstr "Якш"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Душ"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Сеш"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Чор"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Пай"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Жум"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Шан"
@@ -2662,11 +2661,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Шрифт ўлчами"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2674,13 +2673,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган "
"\"upload_max_filesize\" директиваси қийматидан катта!"
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2688,27 +2687,27 @@ msgstr ""
"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" "
"директиваси қийматидан катта!"
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Юкланаётган файл фақатгина қисман юкланди."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Файлни дискка ёзишдахатолик юз берди."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2716,11 +2715,11 @@ msgstr ""
"Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation."
"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2734,7 +2733,7 @@ msgstr "Индекс белгиланмаган!"
msgid "Indexes"
msgstr "Индекслар"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2770,46 +2769,46 @@ msgid ""
"removed."
msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Маълумотлар базалари"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Тузилиши"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Қўйиш"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Операциялар"
@@ -2890,13 +2889,13 @@ msgstr ""
msgid "Engines"
msgstr "Жадвал турлари"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Хатолик"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -2904,7 +2903,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d та қаторларга таъсир этди."
msgstr[1] "%1$d та қаторларга таъсир этди."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -2912,7 +2911,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d та қаторлар ўчирилди."
msgstr[1] "%1$d та қаторлар ўчирилди."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -2947,7 +2946,7 @@ msgstr "Биронта ҳам конфигурацияланган сервер
#: libraries/StorageEngine.class.php:207
msgid ""
"There is no detailed status information available for this storage engine."
-msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас. "
+msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас."
#: libraries/StorageEngine.class.php:347
#, php-format
@@ -2964,55 +2963,55 @@ msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверд
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Репликация сервери аҳволи ҳақида маълумот"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Манба база"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "\"%s\" мавзуси топилмади!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Нотўғри маълумотлар базаси"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Жадвал номи нотўғри"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -3020,16 +3019,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "\"%s\" мавзуси расмларига тўғри йўл топилмади!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Олдиндан кўриш мумкин эмас."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "Тадбиқ қилиш"
@@ -3081,7 +3080,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3122,13 +3121,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3139,7 +3138,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3157,7 +3156,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3170,7 +3169,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3269,77 +3268,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Янги индекс тузиш"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Қаторлар бўлувчиси"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Журнал файллари сони"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3412,7 +3411,7 @@ msgstr "Серверни танланг"
msgid "Cookies must be enabled past this point."
msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3420,16 +3419,15 @@ msgstr ""
"Паролсиз аутентификация конфигурация томонидан ўчирилган (қаранг "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-"\"%s\" сония давомида фаоллик кузатилмади, илтимос, қайта авторизациядан "
-"ўтинг. "
+"\"%s\" сония давомида фаоллик кузатилмади, илтимос, қайта авторизациядан ўтинг"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL серверига уланиб бўлмади"
@@ -3475,18 +3473,18 @@ msgstr "Жадваллар"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Маълумотлар"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Фрагментланган"
@@ -3608,8 +3606,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL сўрови"
@@ -3619,87 +3617,87 @@ msgstr "SQL сўрови"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL жавоби: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "MySQL-серверга уланиб бўлмади"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "Сўров таҳлили"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Таҳлил керак эмас"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP-код олиб ташлаш"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP-код"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Янгилаш"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL синтаксиси текширувини олиб ташлаш"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL тўғрилигини текшириш"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Жадвал турлари"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Профиллаштириш"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Якш"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y й., %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Муолажалар"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3707,7 +3705,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Боши"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3716,7 +3714,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Орқага"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3725,7 +3723,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Кейинги"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3733,49 +3731,49 @@ msgctxt "Last page"
msgid "End"
msgstr "Охири"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "\"%s\" маълумотлар базасига ўтиш"
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
" \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил "
"маълумот учун қаранг \"%s\""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Танлаш учун сичқонча тугмасини босинг"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "Юклаш каталогидан"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Кўрсатилган каталокка юклаб бўлмади"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Чоп этиш"
@@ -3867,72 +3865,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Мусбат сон эмас"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Номанфий сон эмас"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Нотўғри порт номери"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Нотўғри қиймат"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "\"%s\" майдонида маълумот йўқ"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "Ўзгарувчи"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "PHP extension to use"
msgid "SOAP extension not found"
msgstr "Фойдаланиладиган PHP кенгайтмаси"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, fuzzy, php-format
#| msgid "Maximum tables"
msgid "maximum %s"
@@ -3952,7 +3950,7 @@ msgid "Set value: %s"
msgstr "Қуйидаги қийматни ўрнатиш: \"%s\""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Асл қийматларни тиклаш"
@@ -4277,7 +4275,7 @@ msgid "Character set of the file"
msgstr "Файл кодировкаси"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Формат"
@@ -4390,7 +4388,7 @@ msgstr "Белги идентификатори"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME тури"
@@ -4522,8 +4520,8 @@ msgstr "Экспорт афзалликларини созлаш"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4989,14 +4987,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Маълумотлар базаларини дарахтнинг турли даражаларига бўлувчи сатр"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Маълумотлар базаси дарахтининг бўлувчиси"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -5004,40 +5008,40 @@ msgstr ""
"Енгил версия; маълумотлар базаларини дарахтда кўрсатиш (қуйида белгиланган "
"сатр билан бўлинади)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Маълумотлар базаларини дарахтда кўрсатиш"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
"Агар барча маълумотлар базаларини кўрмоқчи бўлсангиз, ушбу танловни ўчиринг"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Енгил версиядан фойдаланиш"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Жадваллар дарахтининг максимум чуқурлиги"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Жадвалларни дарахтнинг турли даражаларига бўлувчи сатр"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Жадвал дарахтининг бўлувчиси"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Логотип боғланган URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -5045,42 +5049,42 @@ msgstr ""
"Боғланган саҳифани бош ойнада ([kbd]бош[/kbd]) ёки янги ойнада ([kbd]янги[/"
"kbd]) очиш"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Логотип боғланган нишон"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Сичқонча курсори турган серверни белгилаш"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Белгилашни ёқиш"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "Кузатилмаган жадваллар"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "SQL сўрови кўрсатилганда ишлатиладиган белгиларнинг максимал сони"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -5091,11 +5095,11 @@ msgstr ""
"чиқиш амалга оширилади. Агар бир нечта серверларга уланганбўлса, унда ЁЛҒОН "
"(FALSE) танлови бошқа серверлардан чиқиш унитилишига олиб келиши мумкин."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Чиқишда барча \"cookies\"ларни ўчириш"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -5103,11 +5107,11 @@ msgstr ""
"cookie-аутентификация усулидан фойдаланилганда олдинги логин сессияси қайта "
"чақирилиб олиниши керакми?"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Фойдаланувчи номини чақириб олиш"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -5119,50 +5123,50 @@ msgstr ""
"сақланади ва браузер ойнаси ёпилган заҳоти ўчирилади. Бу қиймат ишончсиз "
"муҳитлар учун тавсия этилади."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Логин маълумотини cookie-да сақлаш"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "cookie-логин усули қанча вақт (секундларда) яроқли бўлишини белгиланг"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "cookie-логин яроқлиги"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "SQL сўрови кўрсатилганда ишлатиладиган белгиларнинг максимал сони"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "SQL сўровининг максимал узунлиги"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Чап рамкада ва базалар рўйхатида кўрсатиладиган маълумотлар базаларининг "
"максимал сони"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Маълумотлар базаларининг максимал сони"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -5171,29 +5175,29 @@ msgstr ""
"Натижаларда кўрсатиладиган қаторлар сони. Агар натижалар қатори кўрсатилган "
"қийматдан кўп бўлса, \"Олдинги\" ва \"Кейинги\" боғланишлар кўрсатилади."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Кўрсатиладиган қаторларнинг максимал сони"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Максимал жадваллар сони"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -5201,47 +5205,47 @@ msgstr ""
"Скрипт учун ажратиладиган байлардаги хотира миқдори, масалан [kbd]32M[/kbd] "
"([kbd]0[/kbd] - чегараланмаган)."
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Хотира миқдори"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Жадвал сортировкасини ўзгартириш"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Фақат пиктограмма, фақат матн ёки ҳар иккисини ишлатиш"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Пиктограммали навигация менюси"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"HTTP орқали маълумот узатишда юқори тезликка эришиш учун GZip буферизациядан "
"фойдаланинг"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip буферизация"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
#, fuzzy
#| msgid ""
#| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
@@ -5253,46 +5257,46 @@ msgstr ""
"[kbd]SMART[/kbd] – яъни, TIME, DATE, DATETIME ва TIMESTAMP туридаги "
"майдонлар учун камайиш тартибида, акс ҳолда кўпайиш тартибида"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Асл тартиблаш қоидаси"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "MySQL маълумотлар базаларида доимий уланишлардан фойдаланиш"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Доимий уланишлар"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Жадвал операцияларини пиктограммалар ёрдамида амалга ошириш"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
#, fuzzy
#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "BLOB ва BINARY майдонларини таҳирлашни ман этиш"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
#, fuzzy
#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Бинар (иккилик) майдонларни ҳимоялаш"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
#, fuzzy
#| msgid ""
#| "ble if you want DB-based query history (requires pmadb). If disabled, s "
@@ -5306,127 +5310,127 @@ msgstr ""
"танловни ёқинг (pmadb талаб этилади). Ушбу танлов ўчирилган бўлса, ойна "
"ёпилган заҳоти сўровлар тарихи йўқолади."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Доимий сўровлар тарихи"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Журналда сақланадиган сўровлар сони"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "Сўровлар тарихи узунлиги"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Янги сўровлар ойнаси очилганда кўрсатиладиган ёрлиқ"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "Сўровлар ойнасининг ёрлиғи"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Сўровлар ойнаси"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Сўровлар ойнаси"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Сўровлар ойнаси"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Кодировкаларни бир-бирига ўтказишда фойдаланиладиган функцияларни танланг"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Кодировкалаш функцияси"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Жадвал номини ўзгартириш"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Оқимли тиклаш"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Сервердаги экспорт файллар сақланадиган директория"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Сақлаш директорияси"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Агар ишлатилмаса бўш қолдиринг"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Аутентификация тартиби"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Асл қоидаларни ишлатиш учун бўш қолдиринг"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Аутентификация қоидалари"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Паролсиз қиришга рухсат бериш"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "\"root\"га киришга рухсат бериш"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
"HTTP Авторизация вақтида кўрсатиладиган Оддий HTTP Авторизация Бўлими номи"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Бўлими"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5436,19 +5440,19 @@ msgstr ""
"файл йўли (ҳужжатлар каталогига жойлаштирилмаган; тавсия этилади: /etc/"
"swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "\"SweKey\" конфигурация файли"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Фойдаланиладиган аутентификация усули"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Аутентификация усули"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5456,11 +5460,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]Хатчўп[/a] ишлатмаслик учун бўш "
"қолдиринг, асли: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Хатчўплар жадвали"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5468,31 +5472,31 @@ msgstr ""
"Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш "
"қолдиринг, асли: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Устун маълумотлари жадвали"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "MySQL сервеига уланишни қисиш"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Уланишни қисиш"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Серверга уланиш тури, агар билмасангиз, \"tcp\" деб қолдиринг"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Уланиш тури"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Назорат фойдаланувчиси пароли"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5501,31 +5505,31 @@ msgstr ""
"батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]"
"да мавжуд"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Назорат фойдаланувчиси"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Назорат фойдаланувчиси"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Маълумотлар базалари рўйхати кўрсатилганда жадвалларни санаш"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Жадвалларни санаш"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5533,11 +5537,11 @@ msgstr ""
"Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Дизайнер жадвали"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5546,30 +5550,30 @@ msgstr ""
"bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]ларга "
"қаранг"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA ишлатишни ўчириш"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Қайси PHP кенгайтмасидан фойдаланмоқчисиз; иложи бўлса, \"mysqli\" "
"кенгайтмасидан фойдаланинг"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Фойдаланиладиган PHP кенгайтмаси"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
"Мунтазам иборалар(PCRE)га тўғри келадиган маълумотлар базаларини яшириш"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Базаларни яшириш"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5577,43 +5581,43 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL сўровлари тарихи жадвали"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "MySQL сервери ишлаётган хост номи"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Сервер хост номи"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Чиқиш URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Паролсиз уланишга ҳаракат қилиш"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Паролсиз уланиш"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
#, fuzzy
#| msgid ""
#| " can use MySQL wildcard characters (% and _), escape them if you want use "
@@ -5629,31 +5633,31 @@ msgstr ""
"олдига тескари эгри чизиқ (\\) қўйишингиз керак, масалан \\\"my\\_db\\"
"\" (лекин \"my_db\" эмас)"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Фақат рўйхатдаги базаларни кўрсатиш"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
"Агар \"config\" аутентификация усулидан фойдаланмасангиз, бўш қолдиринг"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "\"config\" аутентификация усули пароли"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF-схема: саҳифалар жадвали"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5664,22 +5668,22 @@ msgstr ""
"қаранг. Агар фойдаланмасангиз, бўшқолдиринг. Асл қиймати: [kbd]\"phpmyadmin"
"\"[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "маълумотлар базаси номи"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"MySQL сервери тинглайдиган порт, асл қийматни қолдириш учун бўш қолдиринг"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Сервер порти"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5690,13 +5694,13 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Фойдаланувчи номини чақириб олиш"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5704,19 +5708,19 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]Алоқа боғланишлари[/a]ни "
"ишлатмаслик учун, бўш қолдиринг, асл қиймати: [kbd]\"pma_relation\"[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Алоқалар жадвали"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Мавжуд жадвалларни кўрсатиш учун ишлатиладиган SQL буйруғи"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES буйруғи"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5724,44 +5728,44 @@ msgstr ""
"Намуна учун [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"аутентификация усуллари[/a]га қаранг"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Кириш сессияси номи"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Кириш URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "MySQL сервери тинглайдиган сокет, асл қиймати учун бўш қолдиринг"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Сервер сокети"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
"SSL (Secure Sockets Layer - ҳимояланган сокетлар протоколи) уланишдан "
"фойдаланиш"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL уланишдан фойдаланиш"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_table_coords\"[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF-схема: жадвал координаталари"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
#, fuzzy
#| msgid ""
#| "le to describe the display fields, leave blank for no support; gested: "
@@ -5773,13 +5777,13 @@ msgstr ""
"Кўрсатиладиган майдонлар шарҳлари сақланадиган жадвал, ишлатмаслик учун бўш "
"қолдиринг, асл қиймати: [kbd]\"pma_table_info\"[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Майдонлар жадвалини кўрсатиш"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5790,53 +5794,53 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Жадвални дефрагментациялаш"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Тавсиф"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5847,25 +5851,25 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL сўровлари тарихи жадвали"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Автоматик тиклаш режими"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5876,36 +5880,36 @@ msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "\"config\" аутентификация усули фойдаланувчиси"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "MySQL сервери ишлаётган хост сервер номи"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Ушбу сервернинг кенгайтирилган номи"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "ther a user should be displayed a "show all (records)" button"
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Фойдаланувчига \"барча (ёзувлар)ни кўрсатиш\" тугмаси кўрсатилсинми?"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Барча қаторларни кўрсатишга рухсат бериш"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5914,87 +5918,87 @@ msgstr ""
"Эсда тутинг, ушбу танловни ёқишингиз [kbd]\"config\"[/kbd] аутентификация "
"усулидаги паролга таъсир этмайди"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Паролни ўзгартириш формасини кўрсатиш"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Маълумотлар базаси тузиш формасини кўрсатиш"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Версияларни кўрсатиш"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Уланган бош серверларни кўрсатиш"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Databases display options"
msgid "Show display direction"
msgstr "Маълумотлар базаларини кўрсатиш афзалликлари"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Очиқ жадваллар рўйхати"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Таҳрирлаш/қўйиш режимида функциялар майдонини кўрсатиш"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Фукнциялармайдонини кўрсатиш"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "Тўрни кўрсатиш"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -6002,45 +6006,45 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] функцияси "
"натижасига боғ кўрсатиш"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "\"phpinfo()\" функциясига боғ кўрсатиш"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "MySQL сервери ҳақида батафсил маълумот кўрсатиш"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"phpMyAdmin томонидан генерация қилинган SQL сўровларини кўрсатиш керакми?"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Show SQL сўровларини кўрсатиш"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "SQL Query box"
msgid "Retain query box"
msgstr "SQL сўровлари қутиси"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Маълумотлар базалари ва жадваллар статискасини (масалан, дискда эгаллаган "
"жойи) кўрсатиш"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Статискани кўрсатиш"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -6048,11 +6052,11 @@ msgstr ""
"Агар кўрсатгич контекст ойнаси ёқилган бўлса ва маълумотлар базаларида шарҳ "
"ўрнатилган бўлса, ушбу танлов база шарҳи ва ҳақиқий номи ўрнини алмаштиради"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "База номи ўрнига унинг шарҳини кўрсатиш"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -6064,30 +6068,30 @@ msgstr ""
"директивасида кўрсатилган усулда жадваллар бўлинади, лекин жадвал номлари "
"ўзгаришсиз қолади"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Жадвал номи ўрнига унинг шарҳини кўрсатиш"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Жадвал шарҳларини кўрсатгич контекст ойнасида кўрсатиш"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Ишлатилаётган жадвалларни белгилаш ва қулфланган жадваллари мавжуд бўлган "
"маълумотлар базаларини кўришга имкон бериш"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Қулфланган жадвалларни ташлаб кетишлик"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -6097,82 +6101,82 @@ msgstr ""
msgid "Password"
msgstr "Парол"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Фойдаланувчи"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR майдонидаги устунлар сони"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR майдонидаги қаторлар сони"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Жадвал ёрлиғи"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -6184,54 +6188,54 @@ msgstr ""
"келаётган HTTP_X_FORWARDED_FOR (X-Forwarded-For) сарлавҳани ишончли деб "
"қабул қилишини таъминлайди: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "IP бўйича рухсат бериш/рад этиш учун ишонарли прокси-серверлар рўйхати"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Серверда импорт файллари сақланадиган директория"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Импорт директорияси"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
"Маълумотлар базаси ичидаги маълумотларни тўлалигича қидиришга рухсат бериш"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Базани қидиришдан фойдаланиш"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Охирги версияни текшириш"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Версияни текшириш"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -6239,7 +6243,7 @@ msgstr ""
"Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] қисишни ёқиш"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -6268,96 +6272,96 @@ msgid "Signon authentication"
msgstr "Аутентификация тартиби"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "\"LOAD DATA\" ишлатилган CSV"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document жадвали"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Рангни танлаш"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Маълумотлар базаси экспорт параметрлари"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel учун CSV"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "OpenDocument матн"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "MySQL-серверга уланиб бўлмади"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "MySQL-серверга уланиб бўлмади"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"config аутентификация усули ишлатилмоқда, лекин phpMyAdmin конфигурацион "
"файлида фойдаланувчи номи белгиланмаган"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"signon аутентификация усули ишлатилмоқда, лекин phpMyAdmin конфигурацион "
"файлида сессия номи белгиланмаган"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"signon аутентификация усули ишлатилмоқда, лекин phpMyAdmin конфигурацион "
"файлида URL (унификация қилинган ахборот ресурс кўрсатгичи) белгиланмаган"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
"pmadb усули ишлатилмоқда, лекин phpMyAdmin конфигурацион файлида "
"фойдаланувчи белгиланмаган"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"pmadb усули ишлатилмоқда, лекин phpMyAdmin конфигурацион файлида парол "
"белгиланмаган"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Нотўғри IP-адрес: \"%s\""
@@ -6377,7 +6381,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6385,17 +6389,17 @@ msgid ""
"configured)."
msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервер жавоб бермаяпти"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Тафсилотлар..."
@@ -6465,7 +6469,7 @@ msgstr "Жадвал тузиш"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Номи"
@@ -6610,7 +6614,7 @@ msgstr ""
#: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239
#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467
msgid "Character set of the file:"
-msgstr "Файл кодировкаси: "
+msgstr "Файл кодировкаси:"
#: libraries/display_export.lib.php:321
#, fuzzy
@@ -6667,26 +6671,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Кодировкалаш функцияси"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -7014,7 +7018,7 @@ msgid ""
"when it becomes full."
msgstr ""
"Жадвалда жой тугаганда маълумотлар файли ҳажмини автоматик ошириш "
-"(мегабайтларда) "
+"(мегабайтларда)."
#: libraries/engines/innodb.lib.php:35
msgid "Buffer pool size"
@@ -7042,11 +7046,11 @@ msgstr "Ишлатилиш"
#: libraries/engines/innodb.lib.php:163
msgid "pages"
-msgstr "саҳифалар сони "
+msgstr "саҳифалар сони"
#: libraries/engines/innodb.lib.php:174
msgid "Free pages"
-msgstr "Бўш саҳифалар сони "
+msgstr "Бўш саҳифалар сони"
#: libraries/engines/innodb.lib.php:180
msgid "Dirty pages"
@@ -7058,7 +7062,7 @@ msgstr "Маълумотлар мавжуд саҳифалар"
#: libraries/engines/innodb.lib.php:192
msgid "Pages to be flushed"
-msgstr "Тозалаш керак бўлган саҳифалар сони: "
+msgstr "Тозалаш керак бўлган саҳифалар сони"
#: libraries/engines/innodb.lib.php:198
msgid "Busy pages"
@@ -7066,7 +7070,7 @@ msgstr "Банд саҳифалар"
#: libraries/engines/innodb.lib.php:207
msgid "Latched pages"
-msgstr "Блокировка қилинган саҳифалар сони: "
+msgstr "Блокировка қилинган саҳифалар сони"
#: libraries/engines/innodb.lib.php:218
msgid "Buffer Pool Activity"
@@ -7090,7 +7094,7 @@ msgstr "Буфернинг тозаланиши кутилмоқда"
#: libraries/engines/innodb.lib.php:246
msgid "Read misses in %"
-msgstr "Буферни ўқишда % қолдиришлар мавжуд "
+msgstr "Буферни ўқишда % қолдиришлар мавжуд"
#: libraries/engines/innodb.lib.php:254
msgid "Write waits in %"
@@ -7199,7 +7203,7 @@ msgid ""
msgstr ""
"Жадвал маълумотларини кешлаш учун ажратилган хотира ҳажми. Асл қиймати – 32 "
"Мб. Ушбу хотира маълумотларни сақлаш файллари(.xtd)даги ва қатор "
-"кўрсатгичлари(.xtr)даги ўзгаришларни кешлашда ишлатилади. "
+"кўрсатгичлари(.xtr)даги ўзгаришларни кешлашда ишлатилади."
#: libraries/engines/pbxt.lib.php:35
msgid "Log cache size"
@@ -7473,20 +7477,19 @@ msgid "Display MIME types"
msgstr "Мавжуд MIME турлари"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
-msgstr "Тузилган сана "
+msgstr "Тузилган сана"
#: libraries/export/latex.php:210 libraries/export/sql.php:593
#: libraries/export/xml.php:149
@@ -7697,15 +7700,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL сўрови натижаси"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Тузилган"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL бўш натижа берди (яъни нольта сатр)."
@@ -7813,7 +7808,7 @@ msgstr ""
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Жадвал номи"
@@ -8191,7 +8186,7 @@ msgstr "PDF-схема тузиш"
msgid "Displaying Column Comments"
msgstr "Майдон изоҳларини кўрсатиш"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "Ўгириш"
@@ -8301,10 +8296,10 @@ msgid "Variable"
msgstr "Ўзгарувчи"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Қиймати"
@@ -8367,7 +8362,7 @@ msgstr "Парол ўрнатиш"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, fuzzy, php-format
@@ -8408,8 +8403,8 @@ msgid "Edit event"
msgstr "Серверларни таҳрирлаш"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8474,7 +8469,7 @@ msgstr "Тўла қўйиш"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8530,7 +8525,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8620,59 +8615,59 @@ msgstr "Хавфсизлик"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Сақланадиган муолажаларни бажаришга рухсат беради"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Муолажалар"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Функция"
@@ -8891,7 +8886,7 @@ msgstr "Мундарижа"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Атрибутлар"
@@ -9000,12 +8995,12 @@ msgid "Toggle scratchboard"
msgstr "Кўрсатиш"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Номаълум тил: %1$s."
@@ -9046,14 +9041,14 @@ msgstr "Танлаш учун сичқонча тугмасини босинг"
#: libraries/sql_query_form.lib.php:192
#, php-format
msgid "Run SQL query/queries on server %s"
-msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш "
+msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш"
#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235
#, php-format
msgid "Run SQL query/queries on database %s"
msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Тозалаш"
@@ -9064,11 +9059,11 @@ msgstr "Тозалаш"
msgid "Columns"
msgstr "Майдон номлари"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Ушбу SQL сўровига хатчўп тузиш"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Барча фойдаланувчиларга рухсат бериш"
@@ -9167,13 +9162,13 @@ msgstr ""
"SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар "
"ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -9191,7 +9186,7 @@ msgstr ""
"битталик қўштирноқ (\") белгилари олдидан тескари эгри чизиқ бўлиши керак, "
"масалан: \"\\\\xyz\" ёки \"a\\\"b\"."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -9199,19 +9194,19 @@ msgstr ""
"\"Андозавий\" майдонлар қийматларида тескари эгри чизиқ ва қўштирноқларни "
"ишлатманг."
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Индекс"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Устун(лар)ни олиб ташлаш"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -9220,11 +9215,11 @@ msgstr ""
"Мавжуд MIME турлари ва ўгиришлар параметларини кўриш учун қуйидаги "
"боғланишдан фойдаланинг: - \"%s\"ўзгариришлар тавсифи\"%s\""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "Ўгиришлар параметрлари"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -9236,79 +9231,79 @@ msgstr ""
"белгилари олдидан тескари эгри чизиқ бўлиши керак, масалан: \"\\\\xyz\" ёки "
"\"a\\\"b\"."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Йўқ"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Қоидага кўра:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Бирламчи"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Матн тўлалигича"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "\"%s\" дан кейин"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Устун(лар) қўшиш"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Ҳеч бўлмаганда битта майдон киритиш шарт."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Жадвал тури"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Бўлакларни (PARTITIONS) белгилаш"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Оператор"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Қидириш"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9321,7 +9316,7 @@ msgid ""
"author what %s does."
msgstr ""
"Ҳозирги ватқда тавсиф мавжуд эмас. Ишлатилаётган \"%s\" ўгиришлар "
-"намойиши функцияларининг иши яқин орада тавсифланади. "
+"намойиши функцияларининг иши яқин орада тавсифланади."
#: libraries/transformations/application_octetstream__download.inc.php:13
#, fuzzy
@@ -9521,13 +9516,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "Could not save configuration"
msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9537,8 +9532,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP-архив ичида файл мавжуд эмас!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Ушбу ZIP архивда хатолик:"
@@ -9749,20 +9744,26 @@ msgstr ""
msgid "No databases"
msgstr "Маълумотлар базаси мавжуд эмас"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "жадвал номи"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "жадвал номи"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Жадвал тузиш"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Маълумотлар базасини танланг"
@@ -9840,7 +9841,7 @@ msgstr "Яшириш"
#: pmd_general.php:185
msgid "Number of tables"
-msgstr "Жадваллар сони "
+msgstr "Жадваллар сони"
#: pmd_general.php:436
msgid "Delete relation"
@@ -10066,7 +10067,7 @@ msgstr "Кўриш учун бинар журнални танланг"
#: server_binlog.php:98 server_status.php:614
msgid "Files"
-msgstr "Файллар сони "
+msgstr "Файллар сони"
#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
#: server_status.php:1265
@@ -10997,7 +10998,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Бошланғич саҳифани созлаш"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Тавсиф"
@@ -11073,11 +11074,11 @@ msgstr "Юборилди"
#: server_status.php:1162
msgid "max. concurrent connections"
-msgstr "Максимал уланишлар сони "
+msgstr "Максимал уланишлар сони"
#: server_status.php:1169
msgid "Failed attempts"
-msgstr "Муваффақиятсиз уринишлар сони: "
+msgstr "Муваффақиятсиз уринишлар сони"
#: server_status.php:1185
msgid "Aborted"
@@ -12275,12 +12276,12 @@ msgstr "Хатоларга эътибор бермаслик"
msgid "Show form"
msgstr "Формани кўрсатиш"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr "На URL қодоқлагич ва на CURL мавжуд. Версияни текшириб бўлмади."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -12288,15 +12289,15 @@ msgstr ""
"Версияни аниқлаб бўлмади. Балки Сиз оффлайндасиз ёки сервер жавоб бера "
"олмаяпти."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Сервердар версия ҳақида ноўрин маълумот олинди"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Версия ҳақида тушунарсиз маълумот"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, fuzzy, php-format
#| msgid ""
#| " are using subversion version, run [kbd]svn update[/kbd] :-)[br]The est "
@@ -12308,11 +12309,11 @@ msgstr ""
"Сиз субверсиядан фойдаланмоқдасиз. Ўз версиянгизни янгилашингизни тавсия "
"этамиз. Энг янги версия \"%s\" бўлиб, у \"%s\" санада чиқарилган."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Янгироқ версия ҳали мавжуд эмас"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, fuzzy, php-format
#| msgid ""
#| "s [a@?page=form&formset=features#tab_Security]option[/a] should be "
@@ -12335,7 +12336,7 @@ msgstr ""
"уланган провайдерга тегишли бўлса, IP-адресга асосланган ҳимоя усули "
"ишонарли бўлмаслиги мумкин."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -12346,7 +12347,7 @@ msgstr ""
"тарзда тузилди. Ушбу калит сўз шифрлашда қўлланилади, уни эслаб қолишингиз "
"шарт эмас."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Bzip2 compression "
@@ -12360,7 +12361,7 @@ msgstr ""
"тиклаш[/a] учун махсус функциялар (\"%s\") керак, лекин улар тизимингизда "
"топилмади."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -12368,13 +12369,13 @@ msgstr ""
"Ушбу каталог сервердаги бошқа фойдаланувчилар томонидан на ўқиб ва на ёзиб "
"бўладиган бўлишини таъминлаш мақсадида ушбу қийматни қайта текшириб кўринг."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, fuzzy, php-format
#| msgid "You should use SSL connections if your web server supports it"
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Агар веб-серверингиз имкон берса, SSL-уланишдан фойдаланинг"
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]GZip compression and "
@@ -12387,7 +12388,7 @@ msgstr ""
"тиклаш[/a] учун махсус функциялар (\"%s\") керак, лекин улар тизимингизда "
"топилмади."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -12395,7 +12396,7 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Security]Login cookie validity[/a] uld be "
@@ -12409,14 +12410,14 @@ msgstr ""
"билан 1800 секунд (30 минут) бўлиши керак. 1800 дан катта қийматлар "
"хавфсизлик рискига ва ҳуқуқлар ўзлаштирилишига олиб келиши мумкин."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, fuzzy, php-format
#| msgid ""
#| "you feel this is necessary, use additional protection settings - [a@?"
@@ -12438,7 +12439,7 @@ msgstr ""
"минглаб фойдаланувчилар уланган провайдерга тегишли бўлса, IP-адресга "
"асосланган ҳимоя усули ишонарли бўлмаслиги мумкин."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, fuzzy, php-format
#| msgid ""
#| " set the [kbd]config[/kbd] authentication type and included username "
@@ -12462,7 +12463,7 @@ msgstr ""
"page=servers&mode=edit&id=%1$d#tab_Server]аутентификация усули[/a]ни "
"[kbd]cookie[/kbd] ёки [kbd]http[/kbd] деб белгилаш тавсия этилади."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Zip compression[/a] "
@@ -12474,7 +12475,7 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]ZIP ёрдамида қисиш[/a] "
"тизимда мавжуд бўлмаган (\"%s\") функцияларини талаб этади."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Zip decompression[/"
@@ -12486,29 +12487,29 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]ZIP ёрдамида очиш [/a] "
"тизимда мавжуд бўлмаган (\"%s\") функцияларини талаб этади."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it"
msgid "You should use SSL connections if your database server supports it."
msgstr "Агар веб-серверингиз имкон берса, SSL-уланишдан фойдаланинг"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
#, fuzzy
#| msgid "You should use mysqli for performance reasons"
msgid "You should use mysqli for performance reasons."
msgstr "Унумдорликни ошириш мақсадида \"mysqli\"дан фойдаланинг"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Серверга паролсиз уланишга рухсат берасизми?"
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
#, fuzzy
#| msgid "Key is too short, it should have at least 8 characters"
msgid "Key is too short, it should have at least 8 characters."
msgstr "Калит жуда қисқа, у камида 8 та белгидан иборат бўлиши керак"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
#, fuzzy
#| msgid "Key should contain letters, numbers [em]and[/em] special characters"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
@@ -12520,8 +12521,8 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус
msgid "Wrong data"
msgstr "Маълумотлар базаси мавжуд эмас"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Ташқи қийматларни кўриб чиқиш"
@@ -12555,21 +12556,29 @@ msgstr "SQL-сўровни кўрсатиш"
msgid "Validated SQL"
msgstr "SQL тўғрилигини текшириш"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL сўрови натижаси"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Тузилган"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Хатчўп белгиси"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "%1$s жадвали муваффақиятли ўзгартирилди"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12709,7 +12718,7 @@ msgstr "Қиймати"
msgid "Table %s already exists!"
msgstr "\"%s\" номли жадвал мавжуд!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "%1$s жадвали тузилди."
@@ -12792,7 +12801,7 @@ msgstr "Таҳрирлаш усули"
#: tbl_indexes.php:194
msgid "Index name:"
-msgstr "Индекс номи: "
+msgstr "Индекс номи:"
#: tbl_indexes.php:196
msgid ""
@@ -12801,7 +12810,7 @@ msgstr "(\"PRIMARY\" номи фақат бирламчи индексг
#: tbl_indexes.php:208
msgid "Index type:"
-msgstr "Индекс тури: "
+msgstr "Индекс тури:"
#: tbl_indexes.php:303
#, php-format
@@ -12930,45 +12939,45 @@ msgstr "Бўлакларни (PARTITIONS) ўчириш"
msgid "Check referential integrity:"
msgstr "Маълумотлар яхлитлигини текшириш:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Жадвалларни кўрсатиш"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Фойдаланилаётган жой"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Ишлатилиш"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Эффективлик"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Қаторлар статистикаси"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "статик"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "динамик"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Қатор узунлиги"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Қатор ҳажми"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -13015,7 +13024,7 @@ msgstr "Қидириш шартини кўшиш (яъни \"where\" жумла
#: tbl_select.php:204
msgid "Number of rows per page"
-msgstr "Саҳифадаги қаторлар сони "
+msgstr "Саҳифадаги қаторлар сони"
#: tbl_select.php:210
msgid "Display order:"
@@ -13296,33 +13305,33 @@ msgstr "Ушбу маълумотлар бошқаруви операторла
msgid "Create version"
msgstr "Версиясини тузиш"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "SQL Query box"
msgid "Additional search criteria"
msgstr "SQL сўровлари қутиси"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Кўрсатиладиган қаторларнинг максимал сони"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
@@ -13340,7 +13349,7 @@ msgstr "Мавжуд MIME турлари"
msgid ""
"MIME types printed in italics do not have a separate transformation function"
msgstr ""
-"Курсив билан белгиланган MIME турлари алоҳида ўгириш функцияларига эга эмас. "
+"Курсив билан белгиланган MIME турлари алоҳида ўгириш функцияларига эга эмас"
#: transformation_overview.php:42
msgid "Available transformations"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 2541e2e353..075179c211 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-03-14 14:57+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: uzbek_latin \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "Barchasini ko‘rsatish"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "Sahifa raqami:"
@@ -39,30 +39,30 @@ msgstr ""
"qilmoqda"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "Qidirish"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -72,7 +72,7 @@ msgstr "Qidirish"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
@@ -110,8 +110,8 @@ msgid "Database comment: "
msgstr "Ma`lumotlar bazasiga izoh: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "Jadval izohi"
@@ -122,16 +122,16 @@ msgstr "Jadval izohi"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
#, fuzzy
#| msgid "Column names"
msgid "Column"
msgstr "Maydon nomlari"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -139,12 +139,12 @@ msgstr "Maydon nomlari"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "Tur"
@@ -156,9 +156,9 @@ msgstr "Tur"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "Null"
@@ -168,7 +168,7 @@ msgstr "Null"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "Andoza"
@@ -177,18 +177,18 @@ msgstr "Andoza"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "Aloqalar"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "Izohlar"
@@ -199,11 +199,11 @@ msgstr "Izohlar"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -221,12 +221,12 @@ msgstr "Yo‘q"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -236,8 +236,8 @@ msgstr "Ha"
msgid "View dump (schema) of database"
msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas."
@@ -328,8 +328,8 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -354,8 +354,8 @@ msgstr ""
msgid "Edit or export relational schema"
msgstr "Aloqalar sxemasi"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -365,45 +365,44 @@ msgstr "Aloqalar sxemasi"
msgid "Table"
msgstr "Jadval"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Qatorlarsoni"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "Hajmi"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "ishlatilmoqda"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "Tuzish"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "Oxirgi yangilanish"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "Oxirgi tekshiruv"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, fuzzy, php-format
#| msgid "%s table(s)"
msgid "%s table"
@@ -498,13 +497,13 @@ msgstr "Jadvallarni ishlatish"
msgid "SQL query on database %s :"
msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "so‘rovni bajarish"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "Ruxsat berilmadi"
@@ -539,8 +538,8 @@ msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "Ko‘rib chiqish"
@@ -627,11 +626,11 @@ msgstr "\"%s\" namoyishi o‘chirildi"
msgid "Table %s has been dropped"
msgstr "\"%s\" jadvali o‘chirildi"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "Kuzatish faol."
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "Kuzatish faol emas."
@@ -645,7 +644,7 @@ msgstr ""
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "Namoyish"
@@ -690,7 +689,7 @@ msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -699,17 +698,18 @@ msgid "Export"
msgstr "Eksport"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "Chop etish versiyasi"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "Tozalash"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -758,15 +758,14 @@ msgid "Tracked tables"
msgstr "Kuzatilgan jadvallar"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "Ma`lumotlar bazasi"
@@ -784,7 +783,7 @@ msgstr "Yangilandi"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "Holat"
@@ -991,13 +990,13 @@ msgstr "Xatcho‘plarni ko‘rsatish"
msgid "The bookmark has been deleted."
msgstr "Xatcho‘p o‘chirildi."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "Faylni o‘qib bo‘lmadi!!"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -1029,7 +1028,7 @@ msgstr ""
"Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/"
"export katalogini tekshiring."
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "\"%s\" xatcho‘pi tuzildi"
@@ -1057,8 +1056,8 @@ msgstr ""
"Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha "
"phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi."
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1191,9 +1190,9 @@ msgid "Close"
msgstr "Yopish"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Tahrirlash"
@@ -1221,7 +1220,7 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Jami"
@@ -1232,12 +1231,12 @@ msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr ","
@@ -1330,13 +1329,13 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1404,27 +1403,27 @@ msgid "Connections"
msgstr "Ulanishlar"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "Bayt"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1473,9 +1472,9 @@ msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "Yo‘q"
@@ -1669,7 +1668,7 @@ msgstr "So‘rov tahlili"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "Vaqt"
@@ -2052,7 +2051,7 @@ msgstr "%d soni to‘g‘ri qator raqami emas!"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -2070,7 +2069,7 @@ msgstr "SQL so‘rovlari qutisi"
msgid "Show search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2261,7 +2260,7 @@ msgstr "Parolni o‘zgartirish"
msgid "More"
msgstr "Dush"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2375,27 +2374,27 @@ msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "Yanv"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2403,37 +2402,37 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "Iyun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "Iyul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "Avg"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "Noya"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "Dek"
@@ -2482,32 +2481,32 @@ msgid "Sun"
msgstr "Yaksh"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "Dush"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "Sesh"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "Chor"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "Pay"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "Shan"
@@ -2671,11 +2670,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "Shrift o‘lchami"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2683,13 +2682,13 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
"Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan "
"\"upload_max_filesize\" direktivasi qiymatidan katta!"
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
@@ -2697,27 +2696,27 @@ msgstr ""
"Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" "
"direktivasi qiymatidan katta!"
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi."
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi."
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "Faylni diskka yozishdaxatolik yuz berdi."
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi."
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi."
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2725,11 +2724,11 @@ msgstr ""
"Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation."
"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2743,7 +2742,7 @@ msgstr "Indeks belgilanmagan!"
msgid "Indexes"
msgstr "Indekslar"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2779,46 +2778,46 @@ msgid ""
"removed."
msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "Ma`lumotlar bazalari"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "Tuzilishi"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Qo‘yish"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "Operatsiyalar"
@@ -2899,13 +2898,13 @@ msgstr ""
msgid "Engines"
msgstr "Jadval turlari"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Xatolik"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, fuzzy, php-format
#| msgid "%1$d row(s) affected."
msgid "%1$d row affected."
@@ -2913,7 +2912,7 @@ msgid_plural "%1$d rows affected."
msgstr[0] "%1$d ta qatorlarga ta`sir etdi."
msgstr[1] "%1$d ta qatorlarga ta`sir etdi."
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, fuzzy, php-format
#| msgid "%1$d row(s) deleted."
msgid "%1$d row deleted."
@@ -2921,7 +2920,7 @@ msgid_plural "%1$d rows deleted."
msgstr[0] "%1$d ta qatorlar o‘chirildi."
msgstr[1] "%1$d ta qatorlar o‘chirildi."
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, fuzzy, php-format
#| msgid "%1$d row(s) inserted."
msgid "%1$d row inserted."
@@ -2973,55 +2972,55 @@ msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan."
msgid "This MySQL server does not support the %s storage engine."
msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi."
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "Replikatsiya serveri ahvoli haqida ma`lumot"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Manba baza"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "\"%s\" mavzusi topilmadi!"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "Noto‘g‘ri ma`lumotlar bazasi"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "Jadval nomi noto‘g‘ri"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi."
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr ""
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -3029,16 +3028,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "\"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "Oldindan ko‘rish mumkin emas."
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "Tadbiq qilish"
@@ -3090,7 +3089,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -3131,13 +3130,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -3148,7 +3147,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -3166,7 +3165,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -3179,7 +3178,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3278,77 +3277,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Yangi indeks tuzish"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "Qatorlar bo‘luvchisi"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Jurnal fayllari soni"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3421,7 +3420,7 @@ msgstr "Serverni tanlang"
msgid "Cookies must be enabled past this point."
msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart."
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
@@ -3429,7 +3428,7 @@ msgstr ""
"Parolsiz autentifikatsiya konfiguratsiya tomonidan o‘chirilgan (qarang "
"AllowNoPassword)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
@@ -3437,8 +3436,8 @@ msgstr ""
"\"%s\" soniya davomida faollik kuzatilmadi, iltimos, qayta avtorizatsiyadan "
"o‘ting."
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "MySQL serveriga ulanib bo‘lmadi"
@@ -3484,18 +3483,18 @@ msgstr "Jadvallar"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "Ma`lumotlar"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "Fragmentlangan"
@@ -3618,8 +3617,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL so‘rovi"
@@ -3629,87 +3628,87 @@ msgstr "SQL so‘rovi"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL javobi: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Failed to connect to SQL validator!"
msgstr "MySQL-serverga ulanib bo‘lmadi"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "So‘rov tahlili"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "Tahlil kerak emas"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "PHP-kod olib tashlash"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "PHP-kod"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "Yangilash"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "SQL sintaksisi tekshiruvini olib tashlash"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "SQL to‘g‘riligini tekshirish"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
#, fuzzy
#| msgid "Engines"
msgctxt "Inline edit query"
msgid "Inline"
msgstr "Jadval turlari"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "Profillashtirish"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "Yaksh"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y y., %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Muolajalar"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3717,7 +3716,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "Boshi"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3726,7 +3725,7 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Orqaga"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3735,7 +3734,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "Keyingi"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3743,49 +3742,49 @@ msgctxt "Last page"
msgid "End"
msgstr "Oxiri"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "\"%s\" ma`lumotlar bazasiga o‘tish"
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
" \"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil "
"ma`lumot uchun qarang \"%s\""
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Tanlash uchun sichqoncha tugmasini bosing"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s :"
msgstr "Yuklash katalogidan"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "Chop etish"
@@ -3877,72 +3876,72 @@ msgstr ""
msgid "neither of the above"
msgstr ""
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "Musbat son emas"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "Nomanfiy son emas"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "Noto‘g‘ri port nomeri"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "Noto‘g‘ri qiymat"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr ""
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "\"%s\" maydonida ma`lumot yo‘q"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
#, fuzzy
#| msgid "Variable"
msgid "unavailable"
msgstr "O‘zgaruvchi"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr ""
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr ""
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr ""
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
#, fuzzy
#| msgid "PHP extension to use"
msgid "SOAP extension not found"
msgstr "Foydalaniladigan PHP kengaytmasi"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, fuzzy, php-format
#| msgid "Maximum tables"
msgid "maximum %s"
@@ -3962,7 +3961,7 @@ msgid "Set value: %s"
msgstr "Quyidagi qiymatni o‘rnatish: \"%s\""
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "Asl qiymatlarni tiklash"
@@ -4288,7 +4287,7 @@ msgid "Character set of the file"
msgstr "Fayl kodirovkasi"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "Format"
@@ -4401,7 +4400,7 @@ msgstr "Belgi identifikatori"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME turi"
@@ -4533,8 +4532,8 @@ msgstr "Eksport afzalliklarini sozlash"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -5001,14 +5000,20 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Maximum number of tables displayed in table list"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "Ma`lumotlar bazalarini daraxtning turli darajalariga bo‘luvchi satr"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "Ma`lumotlar bazasi daraxtining bo‘luvchisi"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
@@ -5016,41 +5021,41 @@ msgstr ""
"Yengil versiya; ma`lumotlar bazalarini daraxtda ko‘rsatish (quyida "
"belgilangan satr bilan bo‘linadi)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "Ma`lumotlar bazalarini daraxtda ko‘rsatish"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr ""
"Agar barcha ma`lumotlar bazalarini ko‘rmoqchi bo‘lsangiz, ushbu tanlovni "
"o‘chiring"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "Yengil versiyadan foydalanish"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "Jadvallar daraxtining maksimum chuqurligi"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "Jadvallarni daraxtning turli darajalariga bo‘luvchi satr"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "Jadval daraxtining bo‘luvchisi"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr ""
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logotip bog‘langan URL"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
@@ -5058,42 +5063,42 @@ msgstr ""
"Bog‘langan sahifani bosh oynada ([kbd]bosh[/kbd]) yoki yangi oynada ([kbd]"
"yangi[/kbd]) ochish"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logotip bog‘langan nishon"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "Sichqoncha kursori turgan serverni belgilash"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "Belgilashni yoqish"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "Kuzatilmagan jadvallar"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "SQL so‘rovi ko‘rsatilganda ishlatiladigan belgilarning maksimal soni"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr ""
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -5105,11 +5110,11 @@ msgstr ""
"ulanganbo‘lsa, unda YOLG‘ON (FALSE) tanlovi boshqa serverlardan chiqish "
"unitilishiga olib kelishi mumkin."
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "Chiqishda barcha \"cookies\"larni o‘chirish"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
@@ -5117,11 +5122,11 @@ msgstr ""
"cookie-autentifikatsiya usulidan foydalanilganda oldingi login sessiyasi "
"qayta chaqirilib olinishi kerakmi?"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "Foydalanuvchi nomini chaqirib olish"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -5133,51 +5138,51 @@ msgstr ""
"sessiya uchun saqlanadi va brauzer oynasi yopilgan zahoti o‘chiriladi. Bu "
"qiymat ishonchsiz muhitlar uchun tavsiya etiladi."
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "Login ma`lumotini cookie-da saqlash"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
"cookie-login usuli qancha vaqt (sekundlarda) yaroqli bo‘lishini belgilang"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "cookie-login yaroqligi"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr ""
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "SQL so‘rovi ko‘rsatilganda ishlatiladigan belgilarning maksimal soni"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "SQL so‘rovining maksimal uzunligi"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr ""
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
"Chap ramkada va bazalar ro‘yxatida ko‘rsatiladigan ma`lumotlar bazalarining "
"maksimal soni"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "Ma`lumotlar bazalarining maksimal soni"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -5187,29 +5192,29 @@ msgstr ""
"ko‘rsatilgan qiymatdan ko‘p bo‘lsa, \"Oldingi\" va \"Keyingi\" bog‘lanishlar "
"ko‘rsatiladi."
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "Ko‘rsatiladigan qatorlarning maksimal soni"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "Maksimal jadvallar soni"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr ""
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
@@ -5217,47 +5222,47 @@ msgstr ""
"Skript uchun ajratiladigan baylardagi xotira miqdori, masalan [kbd]32M[/kbd] "
"([kbd]0[/kbd] - chegaralanmagan)."
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "Xotira miqdori"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr ""
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr ""
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Jadval sortirovkasini o‘zgartirish"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "Faqat piktogramma, faqat matn yoki har ikkisini ishlatish"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "Piktogrammali navigatsiya menyusi"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr ""
"HTTP orqali ma`lumot uzatishda yuqori tezlikka erishish uchun GZip "
"buferizatsiyadan foydalaning"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip buferizatsiya"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
#, fuzzy
#| msgid ""
#| "d]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
@@ -5269,46 +5274,46 @@ msgstr ""
"[kbd]SMART[/kbd] – ya`ni, TIME, DATE, DATETIME va TIMESTAMP turidagi "
"maydonlar uchun kamayish tartibida, aks holda ko‘payish tartibida"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "Asl tartiblash qoidasi"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "MySQL ma`lumotlar bazalarida doimiy ulanishlardan foydalanish"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "Doimiy ulanishlar"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr ""
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "Jadval operatsiyalarini piktogrammalar yordamida amalga oshirish"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
#, fuzzy
#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "BLOB va BINARY maydonlarini tahirlashni man etish"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
#, fuzzy
#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Binar (ikkilik) maydonlarni himoyalash"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
#, fuzzy
#| msgid ""
#| "ble if you want DB-based query history (requires pmadb). If disabled, s "
@@ -5322,128 +5327,128 @@ msgstr ""
"tanlovni yoqing (pmadb talab etiladi). Ushbu tanlov o‘chirilgan bo‘lsa, oyna "
"yopilgan zahoti so‘rovlar tarixi yo‘qoladi."
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "Doimiy so‘rovlar tarixi"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "Jurnalda saqlanadigan so‘rovlar soni"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "So‘rovlar tarixi uzunligi"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "Yangi so‘rovlar oynasi ochilganda ko‘rsatiladigan yorliq"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "So‘rovlar oynasining yorlig‘i"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr ""
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "So‘rovlar oynasi"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "So‘rovlar oynasi"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "So‘rovlar oynasi"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr ""
"Kodirovkalarni bir-biriga o‘tkazishda foydalaniladigan funksiyalarni tanlang"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "Kodirovkalash funksiyasi"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Jadval nomini o‘zgartirish"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
#, fuzzy
#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Oqimli tiklash"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "Serverdagi eksport fayllar saqlanadigan direktoriya"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "Saqlash direktoriyasi"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "Agar ishlatilmasa bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
#, fuzzy
#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Autentifikatsiya tartibi"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "Asl qoidalarni ishlatish uchun bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
#, fuzzy
#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Autentifikatsiya qoidalari"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "Parolsiz qirishga ruxsat bеrish"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "\"root\"ga kirishga ruxsat berish"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
"HTTP Avtorizatsiya vaqtida ko‘rsatiladigan Oddiy HTTP Avtorizatsiya Bo‘limi "
"nomi"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP Bo‘limi"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5453,19 +5458,19 @@ msgstr ""
"konfiguratsion fayl yo‘li (hujjatlar katalogiga joylashtirilmagan; tavsiya "
"etiladi: /etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "\"SweKey\" konfiguratsiya fayli"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "Foydalaniladigan autentifikatsiya usuli"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "Autentifikatsiya usuli"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5473,11 +5478,11 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]Xatcho‘p[/a] ishlatmaslik uchun "
"bo‘sh qoldiring, asli: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "Xatcho‘plar jadvali"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
@@ -5485,31 +5490,31 @@ msgstr ""
"Ustun izohlari/\"mime\"-turlari haqidagi ma`lumotlarni ishlatmaslik uchun "
"bo‘sh qoldiring, asli: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "Ustun ma`lumotlari jadvali"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "MySQL serveiga ulanishni qisish"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "Ulanishni qisish"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "Serverga ulanish turi, agar bilmasangiz, \"tcp\" deb qoldiring"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "Ulanish turi"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "Nazorat foydalanuvchisi paroli"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5518,31 +5523,31 @@ msgstr ""
"batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]"
"da mavjud"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "Nazorat foydalanuvchisi"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "Nazorat foydalanuvchisi"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "Ma`lumotlar bazalari ro‘yxati ko‘rsatilganda jadvallarni sanash"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "Jadvallarni sanash"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
@@ -5550,11 +5555,11 @@ msgstr ""
"Dizayner ishlatmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]"
"pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "Dizayner jadvali"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5563,30 +5568,30 @@ msgstr ""
"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
"com/19588]\"MySQL Bugs\"[/a]larga qarang"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "INFORMATION_SCHEMA ishlatishni o‘chirish"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
"Qaysi PHP kengaytmasidan foydalanmoqchisiz; iloji bo‘lsa, \"mysqli\" "
"kengaytmasidan foydalaning"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "Foydalaniladigan PHP kengaytmasi"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr ""
"Muntazam iboralar(PCRE)ga to‘g‘ri keladigan ma`lumotlar bazalarini yashirish"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "Bazalarni yashirish"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@@ -5594,43 +5599,43 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL so‘rovlari tarixi jadvali"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "MySQL sеrvеri ishlayotgan xost nomi"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "Sеrvеr xost nomi"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "Chiqish URL"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "Parolsiz ulanishga harakat qilish"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "Parolsiz ulanish"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
#, fuzzy
#| msgid ""
#| " can use MySQL wildcard characters (% and _), escape them if you want use "
@@ -5646,31 +5651,31 @@ msgstr ""
"oldiga teskari egri chiziq (\\) qo‘yishingiz kerak, masalan \\\"my\\_db\\"
"\" (lekin \"my_db\" emas)"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "Faqat ro‘yxatdagi bazalarni ko‘rsatish"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr ""
"Agar \"config\" autentifikatsiya usulidan foydalanmasangiz, bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "\"config\" autentifikatsiya usuli paroli"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF-sxema: sahifalar jadvali"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5681,22 +5686,22 @@ msgstr ""
"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
"[kbd]\"phpmyadmin\"[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
#, fuzzy
#| msgid "database name"
msgid "Database name"
msgstr "ma`lumotlar bazasi nomi"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr ""
"MySQL serveri tinglaydigan port, asl qiymatni qoldirish uchun bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "Server porti"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5707,13 +5712,13 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Foydalanuvchi nomini chaqirib olish"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5721,19 +5726,19 @@ msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]Aloqa bog‘lanishlari[/a]ni "
"ishlatmaslik uchun, bo‘sh qoldiring, asl qiymati: [kbd]\"pma_relation\"[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "Aloqalar jadvali"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "Mavjud jadvallarni ko‘rsatish uchun ishlatiladigan SQL buyrug‘i"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "SHOW DATABASES buyrug‘i"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5741,44 +5746,44 @@ msgstr ""
"Namuna uchun [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"autentifikatsiya usullari[/a]ga qarang"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Kirish sessiyasi nomi"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "Kirish URL"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "MySQL serveri tinglaydigan soket, asl qiymati uchun bo‘sh qoldiring"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "Server soketi"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr ""
"SSL (Secure Sockets Layer - himoyalangan soketlar protokoli) ulanishdan "
"foydalanish"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "SSL ulanishdan foydalanish"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
"[kbd]\"pma_table_coords\"[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF-sxema: jadval koordinatalari"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
#, fuzzy
#| msgid ""
#| "le to describe the display fields, leave blank for no support; gested: "
@@ -5790,13 +5795,13 @@ msgstr ""
"Ko‘rsatiladigan maydonlar sharhlari saqlanadigan jadval, ishlatmaslik uchun "
"bo‘sh qoldiring, asl qiymati: [kbd]\"pma_table_info\"[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
#, fuzzy
#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Maydonlar jadvalini ko‘rsatish"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5807,53 +5812,53 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Jadvalni defragmentatsiyalash"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr ""
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr ""
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr ""
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
#, fuzzy
#| msgid "Statements"
msgid "Statements to track"
msgstr "Tavsif"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5864,25 +5869,25 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
#, fuzzy
#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL so‘rovlari tarixi jadvali"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
#, fuzzy
#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Avtomatik tiklash rejimi"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
@@ -5893,25 +5898,25 @@ msgstr ""
"Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr ""
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "\"config\" autentifikatsiya usuli foydalanuvchisi"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "MySQL serveri ishlayotgan xost server nomi"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "Ushbu serverning kengaytirilgan nomi"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "ther a user should be displayed a "show all (records)" button"
@@ -5919,11 +5924,11 @@ msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
"Foydalanuvchiga \"barcha (yozuvlar)ni ko‘rsatish\" tugmasi ko‘rsatilsinmi?"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "Barcha qatorlarni ko‘rsatishga ruxsat berish"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5932,87 +5937,87 @@ msgstr ""
"Esda tuting, ushbu tanlovni yoqishingiz [kbd]\"config\"[/kbd] "
"autentifikatsiya usulidagi parolga ta`sir etmaydi"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "Parolni o‘zgartirish formasini ko‘rsatish"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "Ma`lumotlar bazasi tuzish formasini ko‘rsatish"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show versions"
msgid "Show Creation timestamp"
msgstr "Vеrsiyalarni ko‘rsatish"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Databases display options"
msgid "Show display direction"
msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
#, fuzzy
#| msgid "Show open tables"
msgid "Show field types"
msgstr "Ochiq jadvallar ro‘yxati"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "Tahrirlash/qo‘yish rejimida funksiyalar maydonini ko‘rsatish"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "Fuknsiyalarmaydonini ko‘rsatish"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "To‘rni ko‘rsatish"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
@@ -6020,46 +6025,46 @@ msgstr ""
"[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] funksiyasi "
"natijasiga bog‘ ko‘rsatish"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "\"phpinfo()\" funksiyasiga bog‘ ko‘rsatish"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "MySQL serveri haqida batafsil ma`lumot ko‘rsatish"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr ""
"phpMyAdmin tomonidan generatsiya qilingan SQL so‘rovlarini ko‘rsatish "
"kerakmi?"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "Show SQL so‘rovlarini ko‘rsatish"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "SQL Query box"
msgid "Retain query box"
msgstr "SQL so‘rovlari qutisi"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
"Ma`lumotlar bazalari va jadvallar statiskasini (masalan, diskda egallagan "
"joyi) ko‘rsatish"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "Statiskani ko‘rsatish"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
@@ -6068,11 +6073,11 @@ msgstr ""
"sharh o‘rnatilgan bo‘lsa, ushbu tanlov baza sharhi va haqiqiy nomi o‘rnini "
"almashtiradi"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "Baza nomi o‘rniga uning sharhini ko‘rsatish"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -6084,30 +6089,30 @@ msgstr ""
"direktivasida ko‘rsatilgan usulda jadvallar bo‘linadi, lekin jadval nomlari "
"o‘zgarishsiz qoladi"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "Jadval nomi o‘rniga uning sharhini ko‘rsatish"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "Jadval sharhlarini ko‘rsatgich kontekst oynasida ko‘rsatish"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Ishlatilayotgan jadvallarni belgilash va qulflangan jadvallari mavjud "
"bo‘lgan ma`lumotlar bazalarini ko‘rishga imkon berish"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "Qulflangan jadvallarni tashlab ketishlik"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr ""
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -6117,82 +6122,82 @@ msgstr ""
msgid "Password"
msgstr "Parol"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr ""
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "Foydalanuvchi"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr ""
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "CHAR maydonidagi ustunlar soni"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "CHAR maydonidagi qatorlar soni"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr ""
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr ""
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
#, fuzzy
#| msgid "Default table tab"
msgid "Default title"
msgstr "Jadval yorlig‘i"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr ""
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr ""
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -6204,56 +6209,56 @@ msgstr ""
"kelayotgan HTTP_X_FORWARDED_FOR (X-Forwarded-For) sarlavhani ishonchli deb "
"qabul qilishini ta`minlaydi: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
"IP bo‘yicha ruxsat berish/rad etish uchun ishonarli proksi-serverlar ro‘yxati"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "Serverda import fayllari saqlanadigan direktoriya"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "Import direktoriyasi"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr ""
"Ma`lumotlar bazasi ichidagi ma`lumotlarni to‘laligicha qidirishga ruxsat "
"berish"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "Bazani qidirishdan foydalanish"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "Oxirgi versiyani tekshirish"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "Versiyani tekshirish"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -6261,7 +6266,7 @@ msgstr ""
"Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] qisishni yoqish"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -6290,96 +6295,96 @@ msgid "Signon authentication"
msgstr "Autentifikatsiya tartibi"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "\"LOAD DATA\" ishlatilgan CSV"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "Open Document jadvali"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr ""
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
#, fuzzy
#| msgid "Custom color"
msgid "Custom"
msgstr "Rangni tanlash"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "Ma`lumotlar bazasi eksport parametrlari"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel uchun CSV"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "OpenDocument matn"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "MySQL-serverga ulanib bo‘lmadi"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "MySQL-serverga ulanib bo‘lmadi"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr ""
"config autentifikatsiya usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion "
"faylida foydalanuvchi nomi belgilanmagan"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr ""
"signon autentifikatsiya usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion "
"faylida sessiya nomi belgilanmagan"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr ""
"signon autentifikatsiya usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion "
"faylida URL (unifikatsiya qilingan axborot resurs ko‘rsatgichi) belgilanmagan"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr ""
"pmadb usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion faylida "
"foydalanuvchi belgilanmagan"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
"pmadb usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion faylida parol "
"belgilanmagan"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "Noto‘g‘ri IP-adres: \"%s\""
@@ -6399,7 +6404,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6407,17 +6412,17 @@ msgid ""
"configured)."
msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server javob bermayapti"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "Tafsilotlar..."
@@ -6487,7 +6492,7 @@ msgstr "Jadval tuzish"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "Nomi"
@@ -6689,26 +6694,26 @@ msgstr ""
msgid "Encoding Conversion:"
msgstr "Kodirovkalash funksiyasi"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -7499,18 +7504,17 @@ msgid "Display MIME types"
msgstr "Mavjud MIME turlari"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "Xost"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "Tuzilgan sana"
@@ -7724,15 +7728,7 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL so‘rovi natijasi"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "Tuzilgan"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)."
@@ -7841,7 +7837,7 @@ msgstr ""
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "Jadval nomi"
@@ -8220,7 +8216,7 @@ msgstr "PDF-sxema tuzish"
msgid "Displaying Column Comments"
msgstr "Maydon izohlarini ko‘rsatish"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "O‘girish"
@@ -8331,10 +8327,10 @@ msgid "Variable"
msgstr "O‘zgaruvchi"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "Qiymati"
@@ -8397,7 +8393,7 @@ msgstr "Parol o‘rnatish"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, fuzzy, php-format
@@ -8438,8 +8434,8 @@ msgid "Edit event"
msgstr "Serverlarni tahrirlash"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Processes"
@@ -8504,7 +8500,7 @@ msgstr "To‘la qo‘yish"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -8560,7 +8556,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
@@ -8650,59 +8646,59 @@ msgstr "Xavfsizlik"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "Muolajalar"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "Funksiya"
@@ -8921,7 +8917,7 @@ msgstr "Mundarija"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "Atributlar"
@@ -9030,12 +9026,12 @@ msgid "Toggle scratchboard"
msgstr "Ko‘rsatish"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "Noma`lum til: %1$s."
@@ -9083,7 +9079,7 @@ msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish"
msgid "Run SQL query/queries on database %s"
msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "Tozalash"
@@ -9094,11 +9090,11 @@ msgstr "Tozalash"
msgid "Columns"
msgstr "Maydon nomlari"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "Barcha foydalanuvchilarga ruxsat berish"
@@ -9199,13 +9195,13 @@ msgstr ""
"o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s "
"qarang."
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi."
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
#, fuzzy
#| msgid ""
#| "field type is \"enum\" or \"set\", please enter the values using this "
@@ -9223,7 +9219,7 @@ msgstr ""
"va bittalik qo‘shtirnoq (\") belgilari oldidan teskari egri chiziq bo‘lishi "
"kerak, masalan: \"\\\\xyz\" yoki \"a\\\"b\"."
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
@@ -9231,19 +9227,19 @@ msgstr ""
"\"Andozaviy\" maydonlar qiymatlarida teskari egri chiziq va qo‘shtirnoqlarni "
"ishlatmang."
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "Indeks"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "Ustun(lar)ni olib tashlash"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
@@ -9252,11 +9248,11 @@ msgstr ""
"Mavjud MIME turlari va o‘girishlar parametlarini ko‘rish uchun quyidagi "
"bog‘lanishdan foydalaning: - \"%s\"o‘zgaririshlar tavsifi\"%s\""
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "O‘girishlar parametrlari"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -9268,79 +9264,79 @@ msgstr ""
"(\") belgilari oldidan teskari egri chiziq bo‘lishi kerak, masalan: \"\\\\xyz"
"\" yoki \"a\\\"b\"."
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr ""
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr ""
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
#, fuzzy
#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Yo‘q"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "Qoidaga ko‘ra:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "Birlamchi"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "Matn to‘laligicha"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "\"%s\" dan keyin"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, fuzzy, php-format
#| msgid "Add column(s)"
msgid "Add %s column(s)"
msgstr "Ustun(lar) qo‘shish"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
#, fuzzy
#| msgid "You have to add at least one field."
msgid "You have to add at least one column."
msgstr "Hech bo‘lmaganda bitta maydon kiritish shart."
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "Jadval turi"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "Bo‘laklarni (PARTITIONS) belgilash"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "Operator"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "Qidirish"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -9556,13 +9552,13 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "Could not save configuration"
msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -9572,8 +9568,8 @@ msgstr ""
msgid "No files found inside ZIP archive!"
msgstr "ZIP-arxiv ichida fayl mavjud emas!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "Ushbu ZIP arxivda xatolik:"
@@ -9785,20 +9781,26 @@ msgstr ""
msgid "No databases"
msgstr "Ma`lumotlar bazasi mavjud emas"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "table name"
+msgid "Filter databases by name"
+msgstr "jadval nomi"
+
+#: navigation.php:272
#, fuzzy
#| msgid "table name"
msgid "Filter tables by name"
msgstr "jadval nomi"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
#, fuzzy
#| msgid "Create table"
msgctxt "short form"
msgid "Create table"
msgstr "Jadval tuzish"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "Ma`lumotlar bazasini tanlang"
@@ -11044,7 +11046,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "Boshlang‘ich sahifani sozlash"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Tavsif"
@@ -12334,12 +12336,12 @@ msgstr "Xatolarga e`tibor bermaslik"
msgid "Show form"
msgstr "Formani ko‘rsatish"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr "Na URL qodoqlagich va na CURL mavjud. Versiyani tekshirib bo‘lmadi."
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
@@ -12347,15 +12349,15 @@ msgstr ""
"Versiyani aniqlab bo‘lmadi. Balki Siz offlayndasiz yoki server javob bera "
"olmayapti."
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "Serverdar versiya haqida noo‘rin ma`lumot olindi"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "Versiya haqida tushunarsiz ma`lumot"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, fuzzy, php-format
#| msgid ""
#| " are using subversion version, run [kbd]svn update[/kbd] :-)[br]The est "
@@ -12367,11 +12369,11 @@ msgstr ""
"Siz subversiyadan foydalanmoqdasiz. O‘z versiyangizni yangilashingizni "
"tavsiya etamiz. Eng yangi versiya \"%s\" bo‘lib, u \"%s\" sanada chiqarilgan."
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "Yangiroq versiya hali mavjud emas"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, fuzzy, php-format
#| msgid ""
#| "s [a@?page=form&formset=features#tab_Security]option[/a] should be "
@@ -12394,7 +12396,7 @@ msgstr ""
"ulangan provayderga tegishli bo‘lsa, IP-adresga asoslangan himoya usuli "
"ishonarli bo‘lmasligi mumkin."
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -12405,7 +12407,7 @@ msgstr ""
"avtomatik tarzda tuzildi. Ushbu kalit so‘z shifrlashda qo‘llaniladi, uni "
"eslab qolishingiz shart emas."
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Bzip2 compression "
@@ -12419,7 +12421,7 @@ msgstr ""
"va tiklash[/a] uchun maxsus funksiyalar (\"%s\") kerak, lekin ular "
"tizimingizda topilmadi."
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -12428,13 +12430,13 @@ msgstr ""
"yozib bo‘ladigan bo‘lishini ta`minlash maqsadida ushbu qiymatni qayta "
"tekshirib ko‘ring."
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, fuzzy, php-format
#| msgid "You should use SSL connections if your web server supports it"
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "Agar veb-serveringiz imkon bersa, SSL-ulanishdan foydalaning"
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]GZip compression and "
@@ -12447,7 +12449,7 @@ msgstr ""
"va tiklash[/a] uchun maxsus funksiyalar (\"%s\") kerak, lekin ular "
"tizimingizda topilmadi."
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -12455,7 +12457,7 @@ msgid ""
"(currently %d)."
msgstr ""
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Security]Login cookie validity[/a] uld be "
@@ -12469,14 +12471,14 @@ msgstr ""
"bilan 1800 sekund (30 minut) bo‘lishi kerak. 1800 dan katta qiymatlar "
"xavfsizlik riskiga va huquqlar o‘zlashtirilishiga olib kelishi mumkin."
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
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 ""
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, fuzzy, php-format
#| msgid ""
#| "you feel this is necessary, use additional protection settings - [a@?"
@@ -12499,7 +12501,7 @@ msgstr ""
"foydalanuvchilar ulangan provayderga tegishli bo‘lsa, IP-adresga asoslangan "
"himoya usuli ishonarli bo‘lmasligi mumkin."
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, fuzzy, php-format
#| msgid ""
#| " set the [kbd]config[/kbd] authentication type and included username "
@@ -12524,7 +12526,7 @@ msgstr ""
"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
"[/kbd] deb belgilash tavsiya etiladi."
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Zip compression[/a] "
@@ -12536,7 +12538,7 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]ZIP yordamida qisish[/"
"a] tizimda mavjud bo‘lmagan (\"%s\") funksiyalarini talab etadi."
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, fuzzy, php-format
#| msgid ""
#| "?page=form&formset=features#tab_Import_export]Zip decompression[/"
@@ -12548,29 +12550,29 @@ msgstr ""
"[a@?page=form&formset=features#tab_Import_export]ZIP yordamida ochish [/"
"a] tizimda mavjud bo‘lmagan (\"%s\") funksiyalarini talab etadi."
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it"
msgid "You should use SSL connections if your database server supports it."
msgstr "Agar veb-serveringiz imkon bersa, SSL-ulanishdan foydalaning"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
#, fuzzy
#| msgid "You should use mysqli for performance reasons"
msgid "You should use mysqli for performance reasons."
msgstr "Unumdorlikni oshirish maqsadida \"mysqli\"dan foydalaning"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "Serverga parolsiz ulanishga ruxsat berasizmi?"
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
#, fuzzy
#| msgid "Key is too short, it should have at least 8 characters"
msgid "Key is too short, it should have at least 8 characters."
msgstr "Kalit juda qisqa, u kamida 8 ta belgidan iborat bo‘lishi kerak"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
#, fuzzy
#| msgid "Key should contain letters, numbers [em]and[/em] special characters"
msgid "Key should contain letters, numbers [em]and[/em] special characters."
@@ -12582,8 +12584,8 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak"
msgid "Wrong data"
msgstr "Ma`lumotlar bazasi mavjud emas"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "Tashqi qiymatlarni ko‘rib chiqish"
@@ -12617,21 +12619,29 @@ msgstr "SQL-so‘rovni ko‘rsatish"
msgid "Validated SQL"
msgstr "SQL to‘g‘riligini tekshirish"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL so‘rovi natijasi"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "Tuzilgan"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "Xatcho‘p belgisi"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -12772,7 +12782,7 @@ msgstr "Qiymati"
msgid "Table %s already exists!"
msgstr "\"%s\" nomli jadval mavjud!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "%1$s jadvali tuzildi."
@@ -12993,45 +13003,45 @@ msgstr "Bo‘laklarni (PARTITIONS) o‘chirish"
msgid "Check referential integrity:"
msgstr "Ma`lumotlar yaxlitligini tekshirish:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "Jadvallarni ko‘rsatish"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "Foydalanilayotgan joy"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "Ishlatilish"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "Effektivlik"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "Qatorlar statistikasi"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "statik"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "dinamik"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "Qator uzunligi"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "Qator hajmi"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -13359,33 +13369,33 @@ msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:"
msgid "Create version"
msgstr "Vеrsiyasini tuzish"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "SQL Query box"
msgid "Additional search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Ko‘rsatiladigan qatorlarning maksimal soni"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 10b6e56a04..96208490b9 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
"PO-Revision-Date: 2012-04-09 07:19+0200\n"
"Last-Translator: Vian Zhao \n"
"Language-Team: chinese_simplified \n"
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "全部显示"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "页码:"
@@ -38,30 +38,30 @@ msgstr ""
"更新。"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "搜索"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "搜索"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "执行"
@@ -109,8 +109,8 @@ msgid "Database comment: "
msgstr "数据库注释:"
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "表注释"
@@ -121,14 +121,14 @@ msgstr "表注释"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "字段"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -136,12 +136,12 @@ msgstr "字段"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "类型"
@@ -153,9 +153,9 @@ msgstr "类型"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "空"
@@ -165,7 +165,7 @@ msgstr "空"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "默认"
@@ -174,18 +174,18 @@ msgstr "默认"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "链接到"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "注释"
@@ -196,11 +196,11 @@ msgstr "注释"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,12 +218,12 @@ msgstr "否"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -233,8 +233,8 @@ msgstr "是"
msgid "View dump (schema) of database"
msgstr "查看数据库的转存(大纲)。"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "数据库中没有表。"
@@ -320,8 +320,8 @@ msgstr "切换到复制的数据库"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -339,8 +339,8 @@ msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此
msgid "Edit or export relational schema"
msgstr "编辑或导出关系大纲"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -350,45 +350,44 @@ msgstr "编辑或导出关系大纲"
msgid "Table"
msgstr "表"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "行数"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "大小"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "使用中"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "创建时间"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "最后更新"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "最后检查"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -476,13 +475,13 @@ msgstr "使用表"
msgid "SQL query on database %s :"
msgstr "在数据库 %s 执行 SQL 语句:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "提交查询"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "拒绝访问"
@@ -517,8 +516,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "在表 %2$s 中找到 %1$s 个匹配"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "浏览"
@@ -593,11 +592,11 @@ msgstr "已删除视图 %s"
msgid "Table %s has been dropped"
msgstr "已删除表 %s "
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "追踪已启用。"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "追踪已禁用。"
@@ -609,7 +608,7 @@ msgid ""
msgstr "该视图最少包含的行数,参见%s文档%s。"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "视图"
@@ -654,7 +653,7 @@ msgstr "仅选择多余"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -663,17 +662,18 @@ msgid "Export"
msgstr "导出"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "打印预览"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "清空"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -716,15 +716,14 @@ msgid "Tracked tables"
msgstr "已追踪的表"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "数据库"
@@ -742,7 +741,7 @@ msgstr "更新"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "状态"
@@ -936,13 +935,13 @@ msgstr "显示书签"
msgid "The bookmark has been deleted."
msgstr "书签已删除。"
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "无法读取文件"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -968,7 +967,7 @@ msgstr "没有字符集转换库,无法转换文件字符集"
msgid "Could not load import plugins, please check your installation!"
msgstr "无法加载导入插件,请检查你的安装!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "已创建书签 %s"
@@ -992,8 +991,8 @@ msgstr ""
"在最后一次执行时没有数据被解析,建议您增加 PHP 运行时间限制,否则 phpMyAdmin "
"将无法完成导入操作。"
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1103,9 +1102,9 @@ msgid "Close"
msgstr "关闭"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "编辑"
@@ -1129,7 +1128,7 @@ msgstr "静态数据"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "总计"
@@ -1140,12 +1139,12 @@ msgid "Other"
msgstr "其它"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1226,13 +1225,13 @@ msgid "System swap"
msgstr "系统交换空间"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1290,27 +1289,27 @@ msgid "Connections"
msgstr "连接"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "字节"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1350,9 +1349,9 @@ msgstr "请至少添加一个数据"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "无"
@@ -1531,7 +1530,7 @@ msgstr "解释 SQL"
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "时间"
@@ -1856,7 +1855,7 @@ msgstr "%d 不是有效行数。"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1870,7 +1869,7 @@ msgstr "隐藏搜索条件"
msgid "Show search criteria"
msgstr "显示搜索条件"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2040,7 +2039,7 @@ msgstr "修改密码"
msgid "More"
msgstr "更多"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2125,63 +2124,63 @@ msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "十二月"
@@ -2219,32 +2218,32 @@ msgid "Sun"
msgstr "周日"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "周一"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "周二"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "周三"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "周四"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "周五"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "周六"
@@ -2388,11 +2387,11 @@ msgstr "已存在的配置文件(%s)是不可读的。"
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr "配置文件权限错误,无法写入!"
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "字号"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr "错误信息太多,部分未显示。"
@@ -2400,37 +2399,37 @@ msgstr "错误信息太多,部分未显示。"
msgid "File was not an uploaded file."
msgstr "文件不是上传的文件。"
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。"
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。"
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "仅上传了文件的一部分内容。"
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "找不到临时文件夹。"
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "将文件写入磁盘失败。"
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "因扩展而停止文件上传。"
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "上传文件时发生未知错误。"
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2438,11 +2437,11 @@ msgstr ""
"移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]"
"FAQ 1.11[/a]。"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr "移动上传的文件时发生错误。"
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr "无法读取移动后的上传文件。"
@@ -2456,7 +2455,7 @@ msgstr "没有已定义的索引!"
msgid "Indexes"
msgstr "索引"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2492,46 +2491,46 @@ msgid ""
"removed."
msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除"
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "数据库"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "服务器"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "结构"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "插入"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "操作"
@@ -2610,25 +2609,25 @@ msgstr "插件"
msgid "Engines"
msgstr "引擎"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "错误"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "影响了 %1$d 行。"
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "删除了 %1$d 行。"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2670,46 +2669,46 @@ msgstr "%s 在此 MySQL 服务器上被禁止了。"
msgid "This MySQL server does not support the %s storage engine."
msgstr "此 MySQL 服务器不支持 %s 存储引擎。"
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
msgid "unknown table status: "
msgstr "未知表状态: "
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "源数据库"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "未找到主题 %s !"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "无效的数据库"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "无效的数据表名"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "将表 %1$s 改名为 %2$s 时发生错误"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "已将数据表 %s 改名为 %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "无法保存表界面设置"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
@@ -2717,7 +2716,7 @@ msgid ""
msgstr ""
"清除表用户界面设置失败(查看$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2726,16 +2725,16 @@ msgid ""
msgstr ""
"无法保存用户界面属性 \"%s\"。修改将在刷新本页后丢失。请检查表结构是否已修改。"
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "找不到主题 %s 对应的图片路径!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "没有可用的预览。"
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "确定"
@@ -2787,7 +2786,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2828,13 +2827,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "为 %2$s.%3$s 创建版本 %1$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2845,7 +2844,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2863,7 +2862,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2876,7 +2875,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -2975,77 +2974,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "新建索引"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "换行符"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "空间"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3116,20 +3115,20 @@ msgstr "选择服务器"
msgid "Cookies must be enabled past this point."
msgstr "必须启用 Cookies 才能登录。"
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "空密码登录被禁止 (参见 允许空密码)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "登录超时 (%s 秒未活动),请重新登录"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "无法登录 MySQL 服务器"
@@ -3173,18 +3172,18 @@ msgstr "数据表"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "数据"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "多余"
@@ -3291,8 +3290,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL 查询"
@@ -3302,144 +3301,144 @@ msgstr "SQL 查询"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
msgstr "MySQL 返回:"
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "连接到 SQL 校验器失败!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
msgstr "解释 SQL"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
msgstr "略过解释 SQL"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "无 PHP 代码"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "创建 PHP 代码"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "刷新"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "略过校验 SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "校验 SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "在本页面编辑此查询"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "快速编辑"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "概要"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "周日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %m 月 %d 日 %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小时,%s 分 %s 秒"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
msgid "Missing parameter:"
msgstr "缺少参数:"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
msgctxt "First page"
msgid "Begin"
msgstr "首页"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "上一页"
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "下一页"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
msgctxt "Last page"
msgid "End"
msgstr "尾页"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "跳转到数据库“%s”。"
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
msgid "Click to toggle"
msgstr "点击切换"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "从计算机中上传:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "从网站服务器上传文件夹 %s 中选择:"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "用于上传的文件夹出错,无法使用"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "没有可上传的文件"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "执行"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "打印"
@@ -3523,68 +3522,68 @@ msgstr "以上兼有"
msgid "neither of the above"
msgstr "以上均不"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "输入值不是正数"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "输入值不是非负数"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "非法的端口号"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "输入的值不正确"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "输入的值应小于等于 %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "在 %s 中丢失数据"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "不可用"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "“%s”功能需要 %s 扩展"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "缺少函数 (%s),导入功能无效"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "缺少函数 (%s),导出功能无效"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL 校验器已禁用"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "未找到 SOAP 扩展"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "最大 %s"
@@ -3603,7 +3602,7 @@ msgid "Set value: %s"
msgstr "设置值: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "还原默认值"
@@ -3890,7 +3889,7 @@ msgid "Character set of the file"
msgstr "文件字符集"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "格式"
@@ -3989,7 +3988,7 @@ msgstr "关键标签"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME 类型"
@@ -4113,8 +4112,8 @@ msgstr "自定义默认选项"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4539,87 +4538,93 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "显示快速搜索框的最少数据表数量"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "显示快速搜索框的最少数据表数量"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "将数据库分为不同树的分隔字符串"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "树状数据库分隔符"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr "只使用简洁版,以树形显示数据库 (以下面的树形分隔符来显示)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "以树形显示数据库"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "如果想一次性浏览所有数据库,则禁用该选项"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "使用简洁版"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "数据表树最大深度"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "将表分为不同树的分隔符"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "树形表分隔符"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "导航框架中 logo 的地址"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo 链接地址"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr "在主窗口 ([kbd]main[/kbd]) 或新窗口 ([kbd]new[/kbd]) 打开目标页面"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo 链接目标"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "高亮显示鼠标所在位置的服务器"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "启用高亮"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "最近使用的表数的最大值;设为0则关闭"
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
msgid "Recently used tables"
msgstr "最近使用的表"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "浏览非数字字段时所显示的最大字符数"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "限制字段字符数"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4628,21 +4633,21 @@ msgstr ""
"如果设为 TRUE,在退出时将会删除所有服务器的 Cookies。如果设为 FALSE,在您登录"
"多台服务器的时候,容易忘记退出登录。"
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "退出时删除所有 cookies"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr "定义在 cookie 认证方式中是否显示上次登录的用户名"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "显示上次登录的用户名"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4653,48 +4658,48 @@ msgstr ""
"为浏览器进程,在关闭浏览器之后 Cookies 就会被删除。默认值为0。在不安全的环境"
"下建议使用默认值。"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "登录 cookie 存储"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "定义登录 cookie 的有效期 (单位:秒)"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "登录 cookie 有效期"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "放大一倍 LONGTEXT 字段的输入框"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "放大 LONGTEXT 字段的输入框"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "显示 SQL 语句时可以使用的最多字符数"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "显示 SQL 语句的最大长度"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "用户不能设置更大的值"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "在左栏和数据库列表中最多显示的数据库个数"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "最大数据库数量"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4703,71 +4708,71 @@ msgstr ""
"浏览一个结果集时一次显示的最多行数。如果结果集超过此值,将会显示 "上一页"
"" 和 "下一页" 的链接。"
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "显示的最多行数"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "在数据表列表中最多显示的数据表个数"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "最大数据表数量"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr "禁止显示在使用 cookie 认证时缺少 mcrypt 的默认警告"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt 警告"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr "一个脚本可分配到的内存大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]为不限制)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "内存限制"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
msgid "These are Edit, Copy and Delete links"
msgstr "它们是编辑、复制和删除链接"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr "表中每行数据操作链接位置"
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "为数据库和数据表名使用自然排序"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "自然排序"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "仅使用图标、文本或都使用"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "导航条显示"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "使用 GZip 输出缓冲以加快 HTTP 传输速度"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip 输出缓冲"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4775,42 +4780,42 @@ msgstr ""
"[kbd]SMART[/kbd] - 如:对 TIME、DATE、DATETIME 和 TIMESTAMP 类型的字段递减排"
"序,其他字段递增"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "默认排序"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "在连接到 MySQL 数据库时使用持久连接"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "持久连接"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr "禁止在缺少 phpMyAdmin 高级功能所需数据表时在数据库结构页中显示默认警告"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "丢失 phpMyAdmin 高级功能数据表"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "数据表操作显示"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "禁止编辑 BLOB 和 BINARY 类型字段"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "保护二进制字段"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4819,111 +4824,111 @@ msgstr ""
"允许使用基于数据库的查询历史 (需要 phpMyAdmin 高级功能)。如果禁用,将使用 "
"JS 程序来显示查询历史 (关闭窗口即丢失)。"
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "持久查询历史"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "记录查询历史的数量"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "查询历史个数"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "打开一个新查询窗口时默认显示的页面"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "默认查询窗口标签"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "查询窗口高度 (单位:像素)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "查询窗口高度"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "查询窗口宽度 (单位:像素)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "查询窗口宽度"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "选择进行字符集转换时使用的函数"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "记录引擎"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr "当浏览表时,会记住每个表的排序方式"
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
msgid "Remember table's sorting"
msgstr "记录表排序"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "每 X 单元格重复表头,要禁止此功能请设为 [kbd]0[/kbd]"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "重复表头"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr "立刻存储所有已编辑的单元格"
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "服务器上用来保存导出文件的文件夹"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "保存文件夹"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "不使用请留空"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "主机认证模式"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "默认请留空"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "主机认证规则"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "允许空密码登录"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "允许 root 用户登录"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "使用 HTTP 基本认证时显示给用户的提示信息"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP 提示信息"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -4932,19 +4937,19 @@ msgstr ""
"[a@http://swekey.com]SweKey 硬件认证 (外链,英文)[/a]的配置文件路径 (请勿置于"
"你的文档根文件夹,推荐使用:/etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey 配置文件"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "要使用的认证方式"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "认证方式"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -4952,41 +4957,41 @@ msgstr ""
"不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]书签 (外链,英文)[/a]功能请"
"留空,推荐: [kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "书签表"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr "留空则不使用列信息和MIME类型。推荐: [kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "列信息表"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "压缩连接到 MySQL 服务器"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "压缩连接"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "怎样连接到服务器,如果不确定,请选择 tcp"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "连接方式"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "控制用户的密码"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -4994,39 +4999,39 @@ msgstr ""
"一个特殊的被限制权限的 MySQL 用户,参见 [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki (外链,英文)[/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "控制用户"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
msgid "Control host"
msgstr "控制主机"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "显示数据库列表时计算数据表的数量"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "统计数据表"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr "不使用设计功能请留空,推荐: [kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "设计表"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5035,67 +5040,67 @@ msgstr ""
"统 (外链,英文)[/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外"
"链,英文)[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "禁止使用 INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "要使用的 PHP 扩展,如果支持,推荐使用 mysqli。"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "要使用的 PHP 扩展"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "该正则表达式 (PCRE,Perl 兼容) 所匹配的数据库将被隐藏"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "隐藏数据库"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr "不使用 SQL 查询历史功能请留空,推荐: [kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL 查询历史表"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "MySQL 服务器的主机名"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "服务器主机名"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "退出地址"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr "限制保存在数据库中的表设置数量,旧设置将被自动删除"
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
msgid "Maximal number of table preferences to store"
msgstr "最多保存的表设置数量"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "尝试用空密码连接"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "用空密码连接"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5107,28 +5112,28 @@ msgstr ""
"\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。通过该选项你可以对数据库列表排序,只"
"需按顺序输入它们的名称并加上 [kbd]*[/kbd],剩下的数据库将按字母顺序排在最后。"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "仅显示列出的数据库"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "如果不使用 config 认证方式,请留空"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "config 认证方式的密码"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF 大纲: 数据表页"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5137,29 +5142,29 @@ msgstr ""
"关系、书签、PDF 功能所用的数据库。参见 [a@http://wiki.phpmyadmin.net/pma/"
"pmadb]pmadb (外链,英文)[/a]。不使用请留空。推荐: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "数据库名"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "MySQL 服务器监听的端口,留空为默认"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "服务器端口"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr "不需要 \"持久\" 最近使用的表请留空,推荐: [kbd]pma_recent[/kbd]"
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
msgid "Recently used table"
msgstr "最近使用的表"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5167,19 +5172,19 @@ msgstr ""
"不使用[a@http://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功"
"能请留空,推荐: [kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "关系表"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "取得所有可用数据库的 SQL 语句"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "显示数据库(SHOW DATABASES)命令"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
@@ -5187,150 +5192,150 @@ msgstr ""
"参见[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]认证方式 (外链,英文)"
"[/a]中的例子"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Signon 会话名"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "登录地址"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "MySQL 服务器监听的套接字,留空为默认"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "服务器套接字 (socket)"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "使用 SSL 连接到 MySQL 服务器"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "使用 SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF 大纲: 数据表并发"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr "描述显示字段的表,不使用请留空,推荐: [kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "显示字段表"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr "不需要 \"持久\" 表界面设置请留空,推荐: [kbd]pma_table_uiprefs[/kbd]"
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
msgid "UI preferences table"
msgstr "界面设置表"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr "设置当记录数据库创建时,是否在前面加上 DROP DATABASE IF EXISTS 命令。"
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "添加 DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr "设置当记录数据表创建时,是否在前面加上 DROP TABLE IF EXISTS 命令。"
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "添加 DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr "设置当记录视图创建时,是否在前面加上 DROP VIEW IF EXISTS 命令。"
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "添加 DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "定义自动创建新版的命令列表。"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "要追踪的命令"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr "不使用 SQL 查询追踪功能请留空,推荐: [kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL 查询追踪表"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "设置追踪系统是否自动为数据表和视图创建版本。"
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "自动创建版本"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma_userconfig[/kbd]"
msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma_userconfig[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "用户偏好表"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "config 认证方式的用户名"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "一个好记的名字。留空将显示主机名。"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "服务器名称"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "设置是否给用户显示一个 "显示所有 (记录)" 的按钮"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "允许显示所有行"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5339,132 +5344,132 @@ msgstr ""
"注意:该选项不影响 [kbd]config[/kbd] 认证方式,因为密码是保存在配置文件中,该"
"选项也不限制直接执行可实现相同功能的命令。"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "显示修改密码"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "显示创建数据库表单"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "显示更多操作"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "查看主服务器状态"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr "定义在浏览表时显示模式选项是否可用"
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
msgid "Show display direction"
msgstr "显示模式"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr "定义在编辑/插入模式中是否显示字段类型一列"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "显示字段类型"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "在编辑/插入模式中显示函数列"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "显示函数列"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr "是否显示提示"
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
msgid "Show hint"
msgstr "显示提示"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"显示 [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 输出的链接"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "显示 phpinfo() 链接"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "显示 MySQL 服务器详细信息"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "定义是否显示 phpMyAdmin 生成的 SQL 查询"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "显示 SQL 查询"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr "声明查询框是否在提交后依然显示在屏幕上"
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
msgid "Retain query box"
msgstr "保留查询框"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "允许显示数据库和数据表的统计信息 (如:空间使用)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "显示统计"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
"如果启用了悬停提示且设置了数据库备注,这里将简略显示数据库备注和数据库名"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "显示数据库的备注而不显示数据库名"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5475,28 +5480,28 @@ msgstr ""
"['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名,数据表自"
"己的名字并不改变"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "显示表备注而不显示表名"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "悬停时显示表备注"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr "将已锁定的数据表在数据库中显示为使用中"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "跳过锁定的表"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "需要启用 SQL 校验器"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5506,37 +5511,37 @@ msgstr "需要启用 SQL 校验器"
msgid "Password"
msgstr "密码"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr "[strong]警告:[/strong]需要安装 PHP SOAP 扩展或 PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "启用 SQL 校验器"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"如果你有自己的用户名,请在这里输入 (默认为 [kbd]anonymous (匿名)[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "用户名"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "若检测到 Suhosin 将在主页显示一个警告"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin 警告"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5544,11 +5549,11 @@ msgstr ""
"编辑模式的文本框大小 (列数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 "
"(*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "文本框列"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5556,31 +5561,31 @@ msgstr ""
"编辑模式的文本框大小 (行数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 "
"(*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "文本框行"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "选中一个数据库时浏览器窗口的标题"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "未选择时浏览器窗口的标题"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "默认标题"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "选中一个服务器时浏览器窗口的标题"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "选中一张数据表时浏览器窗口的标题"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5591,53 +5596,53 @@ msgstr ""
"信任从代理 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd] 发来的 "
"HTTP_X_FORWARDED_FOR 头"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "可信代理IP列表"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "服务器上用来存放导入文件的文件夹"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "上传文件夹"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "允许搜索整个数据库"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "使用数据库搜索"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr "禁用时,用户不能设置下列选项,右侧的复选框被忽略"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "启用设置中的开发标签"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "检查更新"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "允许在 phpMyAdmin 主页面中检查最新版本"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "检查更新"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5645,7 +5650,7 @@ msgstr ""
"允许在导入和导出时使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP "
"(外链,英文)[/a] 压缩"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5666,82 +5671,82 @@ msgid "Signon authentication"
msgstr "Signon 认证"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV 使用 LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "OpenOffice 表格"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "快速"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "自定义"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "数据库导出选项"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel 的 CSV 格式"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "OpenOffice 文档"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr "无法初始化 Drizzle 连接库"
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
msgid "Could not connect to Drizzle server"
msgstr "无法连接到 Drizzle 服务器"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "无法连接到 MySQL 服务器"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "使用 config 认证方式时 config 认证方式的用户名不能为空"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "使用 singon 认证方式时 Signon 会话名不能为空"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "使用 singon 认证方式时登录地址不能为空"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "使用 PMA 数据库时控制用户不能为空"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "使用 PMA 数据时控制用户的密码不能为空"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "%s 是一个错误的 IP 地址"
@@ -5761,21 +5766,21 @@ msgstr "缺少 %s 扩展。请检查 PHP 配置。"
msgid "possible deep recursion attack"
msgstr "可能的深度递归攻击"
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "服务器无响应(或者本地 MySQL 服务器的套接字没有正确配置)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
msgid "The server is not responding."
msgstr "服务器没有响应。"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr "请检查数据库目录的权限。"
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "详细..."
@@ -5838,7 +5843,7 @@ msgstr "新建数据表"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "名字"
@@ -5992,26 +5997,26 @@ msgstr "请下拉至所选格式并设置选项,其它格式请忽略。"
msgid "Encoding Conversion:"
msgstr "编码转换:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "为 %2$s.%3$s 创建版本 %1$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6697,18 +6702,17 @@ msgid "Display MIME types"
msgstr "显示 MIME 类型"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "主机"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "生成日期"
@@ -6921,15 +6925,7 @@ msgstr "未找到用于 GIS 可视化的数据。"
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL 查询结果"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "生成者"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查询结果为空 (即零行)。"
@@ -7025,7 +7021,7 @@ msgstr "CSV 输入的第 %d 行字段数有错。"
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "数据表名"
@@ -7379,7 +7375,7 @@ msgstr "创建 PDF"
msgid "Displaying Column Comments"
msgstr "显示字段注释"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "浏览器转换"
@@ -7480,10 +7476,10 @@ msgid "Variable"
msgstr "变量"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "值"
@@ -7542,7 +7538,7 @@ msgstr "生成密码"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, php-format
@@ -7578,8 +7574,8 @@ msgid "Edit event"
msgstr "编辑事件"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
msgid "Error in processing request"
msgstr "处理请求时的错误"
@@ -7629,7 +7625,7 @@ msgstr "过期后禁用事件而不删除"
msgid "Definer"
msgstr "用户"
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr "用户必须是 \"用户名@主机名\" 格式"
@@ -7690,7 +7686,7 @@ msgstr ""
"时可能会失败!请使用改进的 'mysqli' 扩展避免此类问题发生。"
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "无效的程序类型: \"%s\""
@@ -7761,56 +7757,56 @@ msgstr "安全类型"
msgid "SQL data access"
msgstr "SQL 数据访问"
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr "请输入程序名称"
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr "参数方向 \"%s\" 无效。"
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr "请设置 ENUM、SET、VARCHAR 和 VARBINARY 类型参数的长度/值。"
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr "请输入每一个参数的名称并设置其类型。"
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr "请设置一个有效的返回类型。"
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr "请输入程序定义。"
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "存储过程中最后一条语句影响了 %d 行"
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, php-format
msgid "Execution results of routine %s"
msgstr "程序 %s 的运行结果"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr "运行程序"
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
msgid "Routine parameters"
msgstr "程序参数"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "函数"
@@ -7985,7 +7981,7 @@ msgstr "目录"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "属性"
@@ -8082,12 +8078,12 @@ msgid "Toggle scratchboard"
msgstr "切换草稿板"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "未知的语言:%1$s."
@@ -8133,7 +8129,7 @@ msgstr "在服务器 %s 运行 SQL 查询"
msgid "Run SQL query/queries on database %s"
msgstr "在数据库 %s 运行 SQL 查询"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "清除"
@@ -8142,11 +8138,11 @@ msgstr "清除"
msgid "Columns"
msgstr "字段"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "将此 SQL 查询加为书签"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "让所有用户均可访问此书签"
@@ -8241,13 +8237,13 @@ msgid ""
msgstr ""
"SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。"
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "%s.%s 的追踪已启用。"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8257,36 +8253,36 @@ msgstr ""
"如字段类型是“enum”或“set”,请使用以下格式输入:'a','b','c'... 如果需要输"
"入反斜杠(“\\”)或单引号(“'”),请在前面加上反斜杠(如 '\\\\xyz' 或 'a\\'b')。"
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号,请用此格式:a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "索引"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "删除字段"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr "要获得可用转换选项的列表及对应的 MIME 类型转换,请点击%s转换说明%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "转换选项"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8296,72 +8292,72 @@ msgstr ""
"请使用此格式输入转换选项的值:'a',100,b,'c'... 如果您需要在值中输入反斜"
"杠 (“\\”)或单引号(“'”),请在前面加上反斜杠 (如 '\\\\xyz' 或 'a\\'b')。"
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM 或 SET 数据过长?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "获取更多编辑空间"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "无"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "定义:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "主键"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "全文搜索"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "于 %s 之后"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "添加 %s 个字段"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "至少要添加一个字段。"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "存储引擎"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "分区定义"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "运算符"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
msgid "Table Search"
msgstr "普通搜索"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
msgid "Edit/Insert"
msgstr "编辑/插入"
@@ -8506,11 +8502,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr "你的偏好将仅作用于本次会话。要想永久保存需要 %sphpMyAdmin 高级功能%s。"
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "无法保存设置"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8520,8 +8516,8 @@ msgstr "你的浏览器中有当前域的 phpMyAdmin 设置。是否导入到当
msgid "No files found inside ZIP archive!"
msgstr "ZIP 包中未找到文件!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ZIP 包中有错误:"
@@ -8689,16 +8685,22 @@ msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似
msgid "No databases"
msgstr "无数据库"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "Filter tables by name"
+msgid "Filter databases by name"
+msgstr "根据表名快速搜索"
+
+#: navigation.php:272
msgid "Filter tables by name"
msgstr "根据表名快速搜索"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "新建数据表"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "请选择数据库"
@@ -9818,7 +9820,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "自启动以来的内部查询: %s"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "说明"
@@ -10981,26 +10983,26 @@ msgstr "忽略错误"
msgid "Show form"
msgstr "显示表单"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr "URL 协议和 CURL 都不可用,无法检查新版本。"
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr "读取版本信息失败。您可能尚未接入网络或更新服务器未响应。"
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "从服务器获得版本错误"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "无法解析版本"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11009,11 +11011,11 @@ msgstr ""
"你现在使用的是开发版,请通过 [kbd]git pull[/kbd] 检查更新 :-)[br]最新正式版"
"为 %s,于 %s 发布。"
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "没有更新的可用版本"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11024,7 +11026,7 @@ msgstr ""
"该%s选项%s应该被关闭以防止有人尝试暴力破解 MySQL 服务器。如果有必要,您可以使"
"用%s可信代理表%s。但如果您和许多人共用一个 IP 地址,该措施的安全性将下降。"
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11033,14 +11035,14 @@ msgstr ""
"您打开了 Cookies 认证方式,但没有设置短语密码,因此系统自动生成了一个短语密"
"码,该密语用于加密 Cookies。您不需要记住这个短语密码。"
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr "此系统目前不支持 %sBzip2 压缩和解压缩%s所必须的 (%s) 函数。"
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11048,19 +11050,19 @@ msgstr ""
"对该值应该进行小心谨慎的检查,确保服务器上的其他用户对该文件夹都没有读取和写"
"入的权限。"
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "如果浏览器支持,建议启用该%s选项%s。"
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr "此系统目前不支持 %sGZip 压缩和解压缩%s所必须的 (%s) 函数。"
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11070,7 +11072,7 @@ msgstr ""
"如果%s登录 cookie 有效期%s超过 1440 秒且超过 %ssession.gc_maxlifetime%s 的值 "
"(当前 %d) 则可能导致会话随机失效。"
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11079,7 +11081,7 @@ msgstr ""
"%s登录 cookie 有效期%s不应超过 1800 秒 (30 分钟)。如果有效期大于 1800 秒,将"
"会增加安全风险。"
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11088,7 +11090,7 @@ msgstr ""
"如果使用 cookie 认证且%s登录 cookie 保存时间%s不为 0,%s登录 cookie 有效期%s"
"的值不能超过前者。"
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11099,7 +11101,7 @@ msgstr ""
"如果有必要,您可以使用额外的保护设置 - %s主机认证%s和%s可信代理表%s。但如果您"
"和许多人共用一个 IP 地址,该措施的安全性将下降。"
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11113,37 +11115,37 @@ msgstr ""
"phpMyAdmin 的管理界面。建议将%s认证方式%s设置为 [kbd]cookie 认证[/kbd]或 "
"[kbd]HTTP 认证[/kbd]。"
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "此系统目前不支持 %sZip 压缩%s所必须的 (%s) 函数。"
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "此系统目前不支持 %sZip 解压缩%s所必须的 (%s) 函数。"
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
msgid "You should use SSL connections if your database server supports it."
msgstr "如果您的数据库服务器支持,您应该使用 SSL 连接。"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "您可以使用 mysqli 以获得更高的性能。"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "该服务器现在允许空密码登录。"
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "短语密码太短,至少应有 8 个字符。"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。"
@@ -11151,8 +11153,8 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。"
msgid "Wrong data"
msgstr "无效数据"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "浏览不相关的值"
@@ -11184,21 +11186,29 @@ msgstr "显示 SQL 查询"
msgid "Validated SQL"
msgstr "已校验的 SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL 查询结果"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "生成者"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "数据表 `%s` 的索引存在问题"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "标签"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "已成功修改表 %1$s "
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11316,7 +11326,7 @@ msgstr "纵值"
msgid "Table %s already exists!"
msgstr "数据表 %s 已存在!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "创建数据表 %1$s 成功。"
@@ -11515,43 +11525,43 @@ msgstr "删除分区"
msgid "Check referential integrity:"
msgstr "检查引用完整性:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
msgid "Showing tables"
msgstr "正在显示表"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "已用空间"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "已用"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "有效"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "行统计"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "静态"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "动态"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "行长度"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
msgstr "行大小 "
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr "下一个自增值"
@@ -11845,27 +11855,27 @@ msgstr "追踪下列数据操作语句:"
msgid "Create version"
msgstr "创建版本"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "在两个不同的字段中执行 “依例查询” (通配符:“%”)"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
msgid "Additional search criteria"
msgstr "附加搜索条件"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr "使用该字段标记每个点"
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
msgid "Maximum rows to plot"
msgstr "显示的最多行数"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr "浏览/编辑点"
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
msgid "How to use"
msgstr "如何使用"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 0e4ea06e37..f2502229e0 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-09 13:14+0200\n"
-"PO-Revision-Date: 2012-04-19 03:18+0200\n"
-"Last-Translator: MoA Chung \n"
+"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"PO-Revision-Date: 2012-05-17 15:06+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: chinese_traditional \n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 0.9\n"
+"X-Generator: Weblate 1.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
@@ -20,11 +20,11 @@ msgid "Show all"
msgstr "全部顯示"
#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2460
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
-#: libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:508
msgid "Page number:"
msgstr "頁碼:"
@@ -38,30 +38,30 @@ msgstr ""
"更新"
#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/common.lib.php:3380
-#: libraries/common.lib.php:3381
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
+#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382
msgid "Search"
msgstr "搜尋"
#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
-#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:532
+#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
-#: libraries/rte/rte_routines.lib.php:1462
+#: libraries/rte/rte_routines.lib.php:1461
#: libraries/rte/rte_triggers.lib.php:373
#: libraries/schema/User_Schema.class.php:150
#: libraries/schema/User_Schema.class.php:207
#: libraries/schema/User_Schema.class.php:449
#: libraries/schema/User_Schema.class.php:489
#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417
-#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:695
+#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:724
#: pmd_pdf.php:142 prefs_manage.php:271 prefs_manage.php:322
#: server_binlog.php:104 server_privileges.php:843 server_privileges.php:1962
#: server_privileges.php:2326 server_privileges.php:2373
@@ -71,7 +71,7 @@ msgstr "搜尋"
#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:304
+#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
#: view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "執行"
@@ -106,11 +106,11 @@ msgstr "建立資料庫 %1$s 成功"
#: db_datadict.php:49 db_operations.php:401
msgid "Database comment: "
-msgstr "資料庫註釋:"
+msgstr "資料庫註釋: "
#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282
-#: libraries/tbl_properties.inc.php:786 tbl_operations.php:369
-#: tbl_printview.php:126
+#: libraries/tbl_properties.inc.php:818 tbl_operations.php:369
+#: tbl_printview.php:124
msgid "Table comments"
msgstr "表註釋"
@@ -121,14 +121,14 @@ msgstr "表註釋"
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
-#: libraries/tbl_properties.inc.php:290 libraries/tbl_select.lib.php:86
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:138
+#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
+#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:428
+#: tbl_zoom_select.php:429
msgid "Column"
msgstr "欄位"
-#: db_datadict.php:164 db_printview.php:104 libraries/Index.class.php:458
+#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458
#: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:248
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
@@ -136,12 +136,12 @@ msgstr "欄位"
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
-#: libraries/rte/rte_routines.lib.php:1380
+#: libraries/rte/rte_routines.lib.php:1379
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
-#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:87
+#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:139 tbl_printview.php:297 tbl_structure.php:201
+#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
msgid "Type"
msgstr "類型"
@@ -153,9 +153,9 @@ msgstr "類型"
#: libraries/export/texytext.php:342
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:91 tbl_change.php:356
-#: tbl_printview.php:140 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:429
+#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
+#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
+#: tbl_tracking.php:372 tbl_zoom_select.php:430
msgid "Null"
msgstr "空"
@@ -165,7 +165,7 @@ msgstr "空"
#: libraries/export/texytext.php:241 libraries/export/texytext.php:343
#: libraries/schema/Pdf_Relation_Schema.class.php:1312
#: libraries/schema/Pdf_Relation_Schema.class.php:1333
-#: libraries/tbl_properties.inc.php:88 tbl_printview.php:141
+#: libraries/tbl_properties.inc.php:89 tbl_printview.php:139
#: tbl_structure.php:205 tbl_tracking.php:307
msgid "Default"
msgstr "預設"
@@ -174,18 +174,18 @@ msgstr "預設"
#: libraries/export/latex.php:486 libraries/export/odt.php:439
#: libraries/export/texytext.php:345
#: libraries/schema/Pdf_Relation_Schema.class.php:1314
-#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:144
+#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:142
msgid "Links to"
msgstr "連結到"
-#: db_datadict.php:173 db_printview.php:110
+#: db_datadict.php:173 db_printview.php:108
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113
#: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375
#: libraries/export/latex.php:489 libraries/export/odt.php:444
#: libraries/export/texytext.php:348
#: libraries/schema/Pdf_Relation_Schema.class.php:1325
#: libraries/schema/Pdf_Relation_Schema.class.php:1336
-#: libraries/tbl_properties.inc.php:111 tbl_printview.php:146
+#: libraries/tbl_properties.inc.php:112 tbl_printview.php:144
msgid "Comments"
msgstr "註釋"
@@ -196,11 +196,11 @@ msgstr "註釋"
#: libraries/export/latex.php:549 libraries/export/odt.php:699
#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:132
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:194
+#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,12 +218,12 @@ msgstr "否"
#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
#: libraries/mult_submits.inc.php:331
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
-#: libraries/user_preferences.lib.php:287 prefs_manage.php:131
+#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:195
+#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -233,8 +233,8 @@ msgstr "是"
msgid "View dump (schema) of database"
msgstr "查看資料庫的轉存(大綱)"
-#: db_export.php:30 db_printview.php:95 db_qbe.php:104 db_tracking.php:47
-#: export.php:374 navigation.php:287
+#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47
+#: export.php:374 navigation.php:298
msgid "No tables found in database."
msgstr "資料庫中沒有表"
@@ -273,7 +273,7 @@ msgstr "刪除資料庫"
#: db_operations.php:482
#, php-format
msgid "Database %s has been dropped."
-msgstr "已被刪除資料庫 %s "
+msgstr "已被刪除資料庫 %s"
#: db_operations.php:487
msgid "Drop the database (DROP)"
@@ -321,8 +321,8 @@ msgstr "切換到複製的資料庫"
#: db_operations.php:582 libraries/Index.class.php:463
#: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48
-#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:89
-#: libraries/tbl_properties.inc.php:792 libraries/tbl_select.lib.php:88
+#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:90
+#: libraries/tbl_properties.inc.php:824 libraries/tbl_select.lib.php:95
#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385
#: tbl_structure.php:202 tbl_structure.php:938 tbl_tracking.php:305
#: tbl_tracking.php:371
@@ -340,8 +340,8 @@ msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原
msgid "Edit or export relational schema"
msgstr "編輯或匯出關聯大綱"
-#: db_printview.php:102 db_tracking.php:80 db_tracking.php:188
-#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:513
+#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188
+#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514
#: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135
#: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65
#: libraries/rte/rte_triggers.lib.php:310
@@ -351,45 +351,44 @@ msgstr "編輯或匯出關聯大綱"
msgid "Table"
msgstr "表"
-#: db_printview.php:103 db_tables_search.php:24 db_tables_search.php:53
-#: libraries/Table.class.php:314 libraries/build_html_for_db.lib.php:31
-#: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:64
-#: libraries/import.lib.php:151 navigation.php:594 navigation.php:616
-#: tbl_printview.php:378 tbl_structure.php:462 tbl_structure.php:536
-#: tbl_structure.php:948
+#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
+#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
+#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
+#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "行數"
-#: db_printview.php:107 libraries/db_structure.lib.php:53 tbl_indexes.php:223
+#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223
msgid "Size"
msgstr "大小"
-#: db_printview.php:161 db_structure.php:592 libraries/export/sql.php:977
+#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977
msgid "in use"
msgstr "使用中"
-#: db_printview.php:187 libraries/db_info.inc.php:76
+#: db_printview.php:185 libraries/db_info.inc.php:76
#: libraries/db_structure.lib.php:60 libraries/export/sql.php:911
-#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:423
+#: libraries/schema/Pdf_Relation_Schema.class.php:1287 tbl_printview.php:421
#: tbl_structure.php:980
msgid "Creation"
msgstr "建立時間"
-#: db_printview.php:196 libraries/db_info.inc.php:81
+#: db_printview.php:194 libraries/db_info.inc.php:81
#: libraries/db_structure.lib.php:65 libraries/export/sql.php:922
-#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:434
+#: libraries/schema/Pdf_Relation_Schema.class.php:1292 tbl_printview.php:432
#: tbl_structure.php:988
msgid "Last update"
msgstr "最後更新"
-#: db_printview.php:205 libraries/db_info.inc.php:86
+#: db_printview.php:203 libraries/db_info.inc.php:86
#: libraries/db_structure.lib.php:70 libraries/export/sql.php:933
-#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:445
+#: libraries/schema/Pdf_Relation_Schema.class.php:1297 tbl_printview.php:443
#: tbl_structure.php:996
msgid "Last check"
msgstr "最後檢查"
-#: db_printview.php:222 db_structure.php:613
+#: db_printview.php:220 db_structure.php:613
#, php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -477,13 +476,13 @@ msgstr "使用表"
msgid "SQL query on database %s :"
msgstr "在資料庫 %s 執行 SQL 指令:"
-#: db_qbe.php:956 libraries/common.lib.php:1239
+#: db_qbe.php:956 libraries/common.lib.php:1235
msgid "Submit Query"
msgstr "送出查詢"
#: db_search.php:31 libraries/auth/config.auth.lib.php:78
#: libraries/auth/config.auth.lib.php:99
-#: libraries/auth/cookie.auth.lib.php:620 libraries/auth/http.auth.lib.php:54
+#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54
#: libraries/auth/signon.auth.lib.php:247
msgid "Access denied"
msgstr "拒絕訪問"
@@ -518,8 +517,8 @@ msgid_plural "%1$s matches inside table %2$s "
msgstr[0] "%s 筆資料符合 - 於資料表 %s "
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3148 libraries/common.lib.php:3378
-#: libraries/common.lib.php:3379 tbl_structure.php:573
+#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
+#: libraries/common.lib.php:3380 tbl_structure.php:573
msgid "Browse"
msgstr "瀏覽"
@@ -584,7 +583,7 @@ msgstr "未知"
#: db_structure.php:367 tbl_operations.php:717
#, php-format
msgid "Table %s has been emptied"
-msgstr "已清空表 %s "
+msgstr "已清空表 %s"
#: db_structure.php:384 tbl_operations.php:736
#, php-format
@@ -594,13 +593,13 @@ msgstr "已刪除 view %s"
#: db_structure.php:384 tbl_operations.php:736
#, php-format
msgid "Table %s has been dropped"
-msgstr "已刪除表 %s "
+msgstr "已刪除表 %s"
-#: db_structure.php:394 tbl_create.php:287
+#: db_structure.php:394 tbl_create.php:286
msgid "Tracking is active."
msgstr "追蹤已啓用"
-#: db_structure.php:399 tbl_create.php:290
+#: db_structure.php:399 tbl_create.php:289
msgid "Tracking is not active."
msgstr "追蹤已停用"
@@ -612,7 +611,7 @@ msgid ""
msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
-#: libraries/tbl_info.inc.php:55 tbl_structure.php:208
+#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
msgid "View"
msgstr "view"
@@ -657,7 +656,7 @@ msgstr "僅選擇多餘"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3391 libraries/common.lib.php:3392
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
@@ -666,17 +665,18 @@ msgid "Export"
msgstr "匯出"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 tbl_structure.php:654
+#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: tbl_structure.php:654
msgid "Print view"
msgstr "列印預覽"
-#: db_structure.php:705 libraries/common.lib.php:3387
-#: libraries/common.lib.php:3388
+#: db_structure.php:705 libraries/common.lib.php:3388
+#: libraries/common.lib.php:3389
msgid "Empty"
msgstr "清空"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
+#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -719,15 +719,14 @@ msgid "Tracked tables"
msgstr "已追蹤的表"
#: db_tracking.php:79 libraries/Menu.class.php:171
-#: libraries/config/messages.inc.php:507 libraries/export/htmlword.php:119
+#: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119
#: libraries/export/latex.php:228 libraries/export/odt.php:162
#: libraries/export/pdf.php:134 libraries/export/sql.php:731
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
-#: libraries/header_printview.inc.php:58 server_databases.php:186
-#: server_privileges.php:2008 server_privileges.php:2071
-#: server_privileges.php:2334 server_status.php:1254
-#: server_synchronize.php:1448 server_synchronize.php:1452
-#: tbl_tracking.php:710
+#: server_databases.php:186 server_privileges.php:2008
+#: server_privileges.php:2071 server_privileges.php:2334
+#: server_status.php:1254 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
msgid "Database"
msgstr "資料庫"
@@ -745,7 +744,7 @@ msgstr "更新"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:977 tbl_tracking.php:715
+#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
msgid "Status"
msgstr "狀態"
@@ -943,13 +942,13 @@ msgstr "顯示書籤"
msgid "The bookmark has been deleted."
msgstr "書籤已被刪除."
-#: import.php:315 import.php:368 libraries/File.class.php:412
-#: libraries/File.class.php:495
+#: import.php:315 import.php:368 libraries/File.class.php:425
+#: libraries/File.class.php:516
msgid "File could not be read"
msgstr "檔案無法讀取"
#: import.php:323 import.php:332 import.php:351 import.php:360
-#: libraries/File.class.php:556
+#: libraries/File.class.php:577
#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
@@ -976,7 +975,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "無法載入匯入插件,請檢查您的安裝!"
-#: import.php:445 sql.php:1016
+#: import.php:445 sql.php:1045
#, php-format
msgid "Bookmark %s created"
msgstr "已建立書籤 %s"
@@ -1001,8 +1000,8 @@ msgstr ""
"在最後一次執行時沒有資料被解析,建議您增加 PHP 運行時間限制,否則 phpMyAdmin "
"將無法完成匯入操作"
-#: import.php:496 libraries/Message.class.php:177
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1212
+#: import.php:496 libraries/Message.class.php:180
+#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1117,9 +1116,9 @@ msgid "Close"
msgstr "關閉"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
-#: libraries/common.lib.php:667 libraries/common.lib.php:1215
-#: libraries/common.lib.php:3389 libraries/common.lib.php:3390
-#: libraries/config/messages.inc.php:489 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:667 libraries/common.lib.php:1211
+#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "編輯"
@@ -1143,7 +1142,7 @@ msgstr "靜態資料"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:335
+#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "總計"
@@ -1154,12 +1153,12 @@ msgid "Other"
msgstr "其他"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1472
+#: js/messages.php:72 libraries/common.lib.php:1468
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1474
+#: js/messages.php:74 libraries/common.lib.php:1470
msgid "."
msgstr "."
@@ -1248,13 +1247,13 @@ msgid "System swap"
msgstr "系統Swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1422
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
#: server_status.php:1705
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1420
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
#: server_status.php:1705
msgid "KiB"
msgstr "KB"
@@ -1318,27 +1317,27 @@ msgid "Connections"
msgstr "連線"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1418
+#: js/messages.php:121 libraries/common.lib.php:1414
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1424
+#: js/messages.php:124 libraries/common.lib.php:1420
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1426
+#: js/messages.php:125 libraries/common.lib.php:1422
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1428
+#: js/messages.php:126 libraries/common.lib.php:1424
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1430
+#: js/messages.php:127 libraries/common.lib.php:1426
msgid "EiB"
msgstr "EB"
@@ -1384,9 +1383,9 @@ msgstr "請至少增加一個變數"
#: js/messages.php:139 libraries/display_export.lib.php:323
#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
-#: libraries/tbl_properties.inc.php:616 pmd_general.php:528
+#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:225 tbl_zoom_select.php:269
+#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
msgid "None"
msgstr "無"
@@ -1579,7 +1578,7 @@ msgstr "SQL說明 "
#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:978
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
msgid "Time"
msgstr "時間"
@@ -1933,7 +1932,7 @@ msgstr "%d 不是有效行數"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
#: libraries/schema/User_Schema.class.php:355
-#: libraries/tbl_properties.inc.php:854 setup/frames/config.inc.php:39
+#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:243 tbl_change.php:1061
#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
@@ -1947,7 +1946,7 @@ msgstr "隱藏搜尋條件"
msgid "Show search criteria"
msgstr "顯示搜尋條件"
-#: js/messages.php:298 libraries/tbl_select.lib.php:113
+#: js/messages.php:298 libraries/tbl_select.lib.php:120
#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
@@ -2129,7 +2128,7 @@ msgstr "修改密碼"
msgid "More"
msgstr "更多"
-#: js/messages.php:375 setup/lib/index.lib.php:176
+#: js/messages.php:375 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2139,7 +2138,7 @@ msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:377
msgid ", latest stable version:"
-msgstr ",最新穩定版本: "
+msgstr ",最新穩定版本:"
#: js/messages.php:378
msgid "up to date"
@@ -2220,63 +2219,63 @@ msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1626
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1628
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1630
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1632
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1634
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1636
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1638
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1640
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1642
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1644
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1650
+#: js/messages.php:451 libraries/common.lib.php:1646
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1652
+#: js/messages.php:453 libraries/common.lib.php:1648
msgid "Dec"
msgstr "十二月"
@@ -2317,32 +2316,32 @@ msgid "Sun"
msgstr "週日"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1653
msgid "Mon"
msgstr "週一"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1655
msgid "Tue"
msgstr "週二"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1657
msgid "Wed"
msgstr "週三"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1659
msgid "Thu"
msgstr "週四"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1665
+#: js/messages.php:482 libraries/common.lib.php:1661
msgid "Fri"
msgstr "週五"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1667
+#: js/messages.php:484 libraries/common.lib.php:1663
msgid "Sat"
msgstr "週六"
@@ -2484,11 +2483,11 @@ msgstr ""
msgid "Wrong permissions on configuration file, should not be world writable!"
msgstr ""
-#: libraries/Config.class.php:1532
+#: libraries/Config.class.php:1521
msgid "Font size"
msgstr "字體大小"
-#: libraries/Error_Handler.class.php:62
+#: libraries/Error_Handler.class.php:65
msgid "Too many error messages, some are not displayed."
msgstr ""
@@ -2496,37 +2495,37 @@ msgstr ""
msgid "File was not an uploaded file."
msgstr ""
-#: libraries/File.class.php:268
+#: libraries/File.class.php:272
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制"
-#: libraries/File.class.php:271
+#: libraries/File.class.php:275
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr "上傳檔案的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值"
-#: libraries/File.class.php:274
+#: libraries/File.class.php:278
msgid "The uploaded file was only partially uploaded."
msgstr "僅上傳了檔案的一部分內容"
-#: libraries/File.class.php:277
+#: libraries/File.class.php:281
msgid "Missing a temporary folder."
msgstr "找不到臨時資料夾"
-#: libraries/File.class.php:280
+#: libraries/File.class.php:284
msgid "Failed to write file to disk."
msgstr "將檔案寫入硬碟失敗"
-#: libraries/File.class.php:283
+#: libraries/File.class.php:287
msgid "File upload stopped by extension."
msgstr "因外掛而停止檔案上傳"
-#: libraries/File.class.php:286
+#: libraries/File.class.php:290
msgid "Unknown error in file upload."
msgstr "上傳檔案時發生未知錯誤"
-#: libraries/File.class.php:451
+#: libraries/File.class.php:466
msgid ""
"Error moving the uploaded file, see [a@./Documentation."
"html#faq1_11@Documentation]FAQ 1.11[/a]"
@@ -2534,11 +2533,11 @@ msgstr ""
"移動上傳文件時發生錯誤,參見 [a@./Documentation.html#faq1_11@Documentation]"
"FAQ 1.11[/a]。"
-#: libraries/File.class.php:463
+#: libraries/File.class.php:484
msgid "Error while moving uploaded file."
msgstr ""
-#: libraries/File.class.php:471
+#: libraries/File.class.php:492
msgid "Cannot read (moved) upload file."
msgstr ""
@@ -2552,7 +2551,7 @@ msgstr "沒有已定義的索引!"
msgid "Indexes"
msgstr "索引"
-#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:505
+#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524
#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592
#: tbl_tracking.php:367
msgid "Unique"
@@ -2579,7 +2578,7 @@ msgstr "已刪除主鍵"
#: libraries/Index.class.php:495
#, php-format
msgid "Index %s has been dropped"
-msgstr "已刪除索引 %s "
+msgstr "已刪除索引 %s"
#: libraries/Index.class.php:598
#, php-format
@@ -2588,46 +2587,46 @@ msgid ""
"removed."
msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除"
-#: libraries/List_Database.class.php:402 libraries/Menu.class.php:459
+#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459
#: libraries/config/messages.inc.php:181 server_databases.php:128
#: server_privileges.php:2008
msgid "Databases"
msgstr "資料庫"
#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:511 main.php:180 server_status.php:788
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
#: server_synchronize.php:1428
msgid "Server"
msgstr "伺服器"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3144 libraries/common.lib.php:3151
-#: libraries/common.lib.php:3384 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
+#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
-#: libraries/config/user_preferences.forms.php:195
-#: libraries/config/user_preferences.forms.php:232
-#: libraries/config/user_preferences.forms.php:258
+#: libraries/config/user_preferences.forms.php:196
+#: libraries/config/user_preferences.forms.php:233
+#: libraries/config/user_preferences.forms.php:259
#: libraries/export/latex.php:458 libraries/import.lib.php:1146
-#: libraries/tbl_properties.inc.php:714 pmd_general.php:155
+#: libraries/tbl_properties.inc.php:746 pmd_general.php:155
#: server_privileges.php:711 server_replication.php:343 tbl_tracking.php:299
msgid "Structure"
msgstr "結構"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3145
-#: libraries/common.lib.php:3152 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
+#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3382 libraries/common.lib.php:3383
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "插入"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3154
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
#: view_operations.php:82
msgid "Operations"
msgstr "操作"
@@ -2708,25 +2707,25 @@ msgstr ""
msgid "Engines"
msgstr "引擎"
-#: libraries/Message.class.php:196 libraries/common.lib.php:629
+#: libraries/Message.class.php:199 libraries/common.lib.php:629
#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "錯誤"
-#: libraries/Message.class.php:249
+#: libraries/Message.class.php:254
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "影響了 %1$d 行。"
-#: libraries/Message.class.php:266
+#: libraries/Message.class.php:273
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] "刪除了 %1$d 行。"
-#: libraries/Message.class.php:283
+#: libraries/Message.class.php:292
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
@@ -2770,55 +2769,55 @@ msgstr "%s 在此 MySQL 伺服器上被禁止了"
msgid "This MySQL server does not support the %s storage engine."
msgstr "此 MySQL 伺服器不支援 %s 儲存引擎"
-#: libraries/Table.class.php:353
+#: libraries/Table.class.php:366
#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
msgstr "顯示從伺服器狀態"
-#: libraries/Table.class.php:750
+#: libraries/Table.class.php:771
#, fuzzy, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "來源資料庫"
-#: libraries/Table.class.php:756
+#: libraries/Table.class.php:779
#, fuzzy, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "未找到主題 %s !"
-#: libraries/Table.class.php:1174
+#: libraries/Table.class.php:1279
msgid "Invalid database"
msgstr "無效的資料庫"
-#: libraries/Table.class.php:1188 tbl_get_field.php:27
+#: libraries/Table.class.php:1293 tbl_get_field.php:27
msgid "Invalid table name"
msgstr "無效的資料資料表名稱"
-#: libraries/Table.class.php:1219
+#: libraries/Table.class.php:1325
#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤"
-#: libraries/Table.class.php:1306
+#: libraries/Table.class.php:1413
#, fuzzy, php-format
#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "已將資料表 %s 改名爲 %s"
-#: libraries/Table.class.php:1450
+#: libraries/Table.class.php:1557
msgid "Could not save table UI preferences"
msgstr "無法儲存表格介面使用者喜好設定"
-#: libraries/Table.class.php:1474
+#: libraries/Table.class.php:1581
#, php-format
msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-#: libraries/Table.class.php:1606
+#: libraries/Table.class.php:1719
#, php-format
msgid ""
"Cannot save UI property \"%s\". The changes made will not be persistent "
@@ -2826,16 +2825,16 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:149
+#: libraries/Theme.class.php:154
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "找不到佈景主題 %s 指定圖片路徑!"
-#: libraries/Theme.class.php:359
+#: libraries/Theme.class.php:383
msgid "No preview available."
msgstr "沒有可用的預覽。"
-#: libraries/Theme.class.php:362
+#: libraries/Theme.class.php:386
msgid "take it"
msgstr "確定"
@@ -2887,7 +2886,7 @@ msgid ""
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-#: libraries/Types.class.php:299 libraries/Types.class.php:707
+#: libraries/Types.class.php:299 libraries/Types.class.php:705
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
@@ -2928,13 +2927,13 @@ msgstr ""
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:313 libraries/Types.class.php:717
+#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "爲 %2$s.%3$s 建立版本 %1$s"
-#: libraries/Types.class.php:315 libraries/Types.class.php:719
+#: libraries/Types.class.php:315 libraries/Types.class.php:717
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
@@ -2945,7 +2944,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-#: libraries/Types.class.php:319 libraries/Types.class.php:723
+#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, fuzzy, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
@@ -2963,7 +2962,7 @@ msgid ""
"spaces to the specified length when stored"
msgstr ""
-#: libraries/Types.class.php:325 libraries/Types.class.php:725
+#: libraries/Types.class.php:325 libraries/Types.class.php:723
#, php-format
msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
@@ -2976,7 +2975,7 @@ msgid ""
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
-#: libraries/Types.class.php:329 libraries/Types.class.php:727
+#: libraries/Types.class.php:329 libraries/Types.class.php:725
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
@@ -3075,77 +3074,77 @@ msgstr ""
msgid "A collection of geometry objects of any type"
msgstr ""
-#: libraries/Types.class.php:619 libraries/Types.class.php:971
+#: libraries/Types.class.php:617 libraries/Types.class.php:967
msgctxt "numeric types"
msgid "Numeric"
msgstr ""
-#: libraries/Types.class.php:638 libraries/Types.class.php:974
+#: libraries/Types.class.php:636 libraries/Types.class.php:970
#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "建立索引"
-#: libraries/Types.class.php:647 libraries/Types.class.php:977
+#: libraries/Types.class.php:645 libraries/Types.class.php:973
#, fuzzy
#| msgid "Lines terminated by"
msgctxt "string types"
msgid "String"
msgstr "資料分行使用字元:"
-#: libraries/Types.class.php:668
+#: libraries/Types.class.php:666
#, fuzzy
#| msgid "Total count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "總數量"
-#: libraries/Types.class.php:703
+#: libraries/Types.class.php:701
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
-#: libraries/Types.class.php:705
+#: libraries/Types.class.php:703
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
-#: libraries/Types.class.php:709
+#: libraries/Types.class.php:707
msgid "A system's default double-precision floating-point number"
msgstr ""
-#: libraries/Types.class.php:711
+#: libraries/Types.class.php:709
msgid "True or false"
msgstr ""
-#: libraries/Types.class.php:713
+#: libraries/Types.class.php:711
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
-#: libraries/Types.class.php:715
+#: libraries/Types.class.php:713
msgid "Stores a Universally Unique Identifier (UUID)"
msgstr ""
-#: libraries/Types.class.php:721
+#: libraries/Types.class.php:719
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
-#: libraries/Types.class.php:729
+#: libraries/Types.class.php:727
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
-#: libraries/Types.class.php:731
+#: libraries/Types.class.php:729
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a four-byte prefix indicating the length of the value"
msgstr ""
-#: libraries/Types.class.php:733
+#: libraries/Types.class.php:731
msgid "An enumeration, chosen from the list of defined values"
msgstr ""
@@ -3216,20 +3215,20 @@ msgstr "選擇伺服器"
msgid "Cookies must be enabled past this point."
msgstr "必須啟用 Cookies 才能登入。"
-#: libraries/auth/cookie.auth.lib.php:618
+#: libraries/auth/cookie.auth.lib.php:614
#: libraries/auth/signon.auth.lib.php:245
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
msgstr "空密碼登錄被禁止 (參見 允許空密碼)"
-#: libraries/auth/cookie.auth.lib.php:622
+#: libraries/auth/cookie.auth.lib.php:618
#: libraries/auth/signon.auth.lib.php:249
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr "登錄超時 (%s 秒未操作),請重新登錄"
-#: libraries/auth/cookie.auth.lib.php:633
-#: libraries/auth/cookie.auth.lib.php:635
+#: libraries/auth/cookie.auth.lib.php:629
+#: libraries/auth/cookie.auth.lib.php:631
#: libraries/auth/signon.auth.lib.php:253
msgid "Cannot log in to the MySQL server"
msgstr "無法登錄 MySQL 伺服器"
@@ -3273,18 +3272,18 @@ msgstr "資料表"
#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:304
#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:363
#: libraries/config/setup.forms.php:368
-#: libraries/config/user_preferences.forms.php:204
-#: libraries/config/user_preferences.forms.php:240
-#: libraries/config/user_preferences.forms.php:263
-#: libraries/config/user_preferences.forms.php:268
+#: libraries/config/user_preferences.forms.php:205
+#: libraries/config/user_preferences.forms.php:241
+#: libraries/config/user_preferences.forms.php:264
+#: libraries/config/user_preferences.forms.php:269
#: libraries/export/latex.php:284 libraries/export/sql.php:1395
-#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:301
+#: server_privileges.php:711 server_replication.php:344 tbl_printview.php:299
#: tbl_structure.php:839
msgid "Data"
msgstr "資料"
#: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55
-#: tbl_printview.php:320 tbl_structure.php:856
+#: tbl_printview.php:318 tbl_structure.php:856
msgid "Overhead"
msgstr "多餘"
@@ -3393,8 +3392,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "zh"
-#: libraries/common.lib.php:642 libraries/header_printview.inc.php:61
-#: server_status.php:599 server_status.php:1259
+#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
+#: sql.php:936
msgid "SQL query"
msgstr "SQL 查詢"
@@ -3404,83 +3403,83 @@ msgstr "SQL 查詢"
#: libraries/rte/rte_routines.lib.php:260
#: libraries/rte/rte_routines.lib.php:270
#: libraries/rte/rte_routines.lib.php:284
-#: libraries/rte/rte_routines.lib.php:1267
+#: libraries/rte/rte_routines.lib.php:1266
#: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81
#: libraries/rte/rte_triggers.lib.php:91
#: libraries/rte/rte_triggers.lib.php:104
msgid "MySQL said: "
-msgstr "MySQL 返回:"
+msgstr "MySQL 返回: "
-#: libraries/common.lib.php:1146
+#: libraries/common.lib.php:1142
msgid "Failed to connect to SQL validator!"
msgstr "連線到 SQL 檢驗器失敗!"
-#: libraries/common.lib.php:1187 libraries/config/messages.inc.php:490
+#: libraries/common.lib.php:1183 libraries/config/messages.inc.php:491
msgid "Explain SQL"
-msgstr "SQL說明 "
+msgstr "SQL說明"
-#: libraries/common.lib.php:1191
+#: libraries/common.lib.php:1187
msgid "Skip Explain SQL"
-msgstr "略過SQL說明 "
+msgstr "略過SQL說明"
-#: libraries/common.lib.php:1228
+#: libraries/common.lib.php:1224
msgid "Without PHP Code"
msgstr "無 PHP 程式碼"
-#: libraries/common.lib.php:1231 libraries/config/messages.inc.php:492
+#: libraries/common.lib.php:1227 libraries/config/messages.inc.php:493
msgid "Create PHP Code"
msgstr "建立 PHP 程式碼"
-#: libraries/common.lib.php:1251 libraries/config/messages.inc.php:491
+#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
#: server_status.php:799 server_status.php:821 server_status.php:841
msgid "Refresh"
msgstr "重新整理"
-#: libraries/common.lib.php:1261
+#: libraries/common.lib.php:1257
msgid "Skip Validate SQL"
msgstr "略過檢驗 SQL"
-#: libraries/common.lib.php:1264 libraries/config/messages.inc.php:494
+#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:495
msgid "Validate SQL"
msgstr "檢驗 SQL"
-#: libraries/common.lib.php:1323
+#: libraries/common.lib.php:1319
msgid "Inline edit of this query"
msgstr "在本頁面編輯此查詢"
-#: libraries/common.lib.php:1325
+#: libraries/common.lib.php:1321
msgctxt "Inline edit query"
msgid "Inline"
msgstr "行間"
-#: libraries/common.lib.php:1393 sql.php:973
+#: libraries/common.lib.php:1389 sql.php:1002
msgid "Profiling"
msgstr "概要"
#. l10n: Short week day name
-#: libraries/common.lib.php:1655
+#: libraries/common.lib.php:1651
msgctxt "Short week day name"
msgid "Sun"
msgstr "週日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1671
+#: libraries/common.lib.php:1667
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %m 月 %d 日 %H:%M"
-#: libraries/common.lib.php:2003
+#: libraries/common.lib.php:2000
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小時,%s 分 %s 秒"
-#: libraries/common.lib.php:2092
+#: libraries/common.lib.php:2089
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "一般"
-#: libraries/common.lib.php:2472 libraries/common.lib.php:2475
+#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
#: libraries/display_tbl.lib.php:330
#, fuzzy
#| msgid "Begin"
@@ -3488,7 +3487,7 @@ msgctxt "First page"
msgid "Begin"
msgstr "開始"
-#: libraries/common.lib.php:2473 libraries/common.lib.php:2476
+#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
#: libraries/display_tbl.lib.php:333 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
@@ -3498,7 +3497,7 @@ msgid "Previous"
msgstr "上一個"
# 這應該使用於選擇日期的小月曆
-#: libraries/common.lib.php:2503 libraries/common.lib.php:2506
+#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
#: libraries/display_tbl.lib.php:413 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
@@ -3507,7 +3506,7 @@ msgctxt "Next page"
msgid "Next"
msgstr "下個月"
-#: libraries/common.lib.php:2504 libraries/common.lib.php:2507
+#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
#: libraries/display_tbl.lib.php:437
#, fuzzy
#| msgid "End"
@@ -3515,46 +3514,46 @@ msgctxt "Last page"
msgid "End"
msgstr "結束"
-#: libraries/common.lib.php:2574
+#: libraries/common.lib.php:2571
#, php-format
msgid "Jump to database "%s"."
msgstr "跳轉到資料庫“%s”"
-#: libraries/common.lib.php:2596
+#: libraries/common.lib.php:2593
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s"
-#: libraries/common.lib.php:2748
+#: libraries/common.lib.php:2749
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "點擊選取"
-#: libraries/common.lib.php:3310 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "從計算機中上傳:"
-#: libraries/common.lib.php:3332
+#: libraries/common.lib.php:3333
#, php-format
msgid "Select from the web server upload directory %s :"
msgstr "選擇 Web 伺服器上傳目錄 %s :"
-#: libraries/common.lib.php:3356 libraries/sql_query_form.lib.php:451
+#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
#: tbl_change.php:933
msgid "The directory you set for upload work cannot be reached"
msgstr "設定之上傳目錄錯誤,無法使用"
-#: libraries/common.lib.php:3365
+#: libraries/common.lib.php:3366
msgid "There are no files to upload"
msgstr "沒有可上傳的檔案"
-#: libraries/common.lib.php:3393 libraries/common.lib.php:3394
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
msgid "Execute"
msgstr "執行"
-#: libraries/common.lib.php:3890
+#: libraries/common.lib.php:3902
msgid "Print"
msgstr "列印"
@@ -3638,75 +3637,75 @@ msgstr "以上兼有"
msgid "neither of the above"
msgstr "以上均不"
-#: libraries/config/FormDisplay.class.php:83
-#: libraries/config/validate.lib.php:522
+#: libraries/config/FormDisplay.class.php:88
+#: libraries/config/validate.lib.php:523
msgid "Not a positive number"
msgstr "輸入值不是正數"
-#: libraries/config/FormDisplay.class.php:84
-#: libraries/config/validate.lib.php:544
+#: libraries/config/FormDisplay.class.php:89
+#: libraries/config/validate.lib.php:545
msgid "Not a non-negative number"
msgstr "輸入值不是非負數"
-#: libraries/config/FormDisplay.class.php:85
-#: libraries/config/validate.lib.php:500
+#: libraries/config/FormDisplay.class.php:90
+#: libraries/config/validate.lib.php:501
msgid "Not a valid port number"
msgstr "錯誤的連結埠"
-#: libraries/config/FormDisplay.class.php:86
-#: libraries/config/FormDisplay.class.php:577
-#: libraries/config/validate.lib.php:432 libraries/config/validate.lib.php:562
+#: libraries/config/FormDisplay.class.php:91
+#: libraries/config/FormDisplay.class.php:586
+#: libraries/config/validate.lib.php:433 libraries/config/validate.lib.php:563
msgid "Incorrect value"
msgstr "輸入的值不正確"
-#: libraries/config/FormDisplay.class.php:87
-#: libraries/config/validate.lib.php:578
+#: libraries/config/FormDisplay.class.php:92
+#: libraries/config/validate.lib.php:579
#, php-format
msgid "Value must be equal or lower than %s"
msgstr "輸入的值應小於等於 %s"
-#: libraries/config/FormDisplay.class.php:533
+#: libraries/config/FormDisplay.class.php:540
#, php-format
msgid "Missing data for %s"
msgstr "在 %s 中丟失資料"
-#: libraries/config/FormDisplay.class.php:749
-#: libraries/config/FormDisplay.class.php:755
+#: libraries/config/FormDisplay.class.php:761
+#: libraries/config/FormDisplay.class.php:767
msgid "unavailable"
msgstr "不可用"
-#: libraries/config/FormDisplay.class.php:751
-#: libraries/config/FormDisplay.class.php:757
+#: libraries/config/FormDisplay.class.php:763
+#: libraries/config/FormDisplay.class.php:769
#, php-format
msgid "\"%s\" requires %s extension"
msgstr "“%s”功能需要 %s 外掛"
-#: libraries/config/FormDisplay.class.php:776
+#: libraries/config/FormDisplay.class.php:788
#, php-format
msgid "import will not work, missing function (%s)"
msgstr "缺少函數 (%s),匯入功能無效"
-#: libraries/config/FormDisplay.class.php:782
+#: libraries/config/FormDisplay.class.php:794
#, php-format
msgid "export will not work, missing function (%s)"
msgstr "缺少函數 (%s),匯出功能無效"
-#: libraries/config/FormDisplay.class.php:792
+#: libraries/config/FormDisplay.class.php:804
msgid "SQL Validator is disabled"
msgstr "SQL 檢驗器已停用"
-#: libraries/config/FormDisplay.class.php:799
+#: libraries/config/FormDisplay.class.php:811
msgid "SOAP extension not found"
msgstr "未安裝 SOAP 元件"
-#: libraries/config/FormDisplay.class.php:809
+#: libraries/config/FormDisplay.class.php:821
#, php-format
msgid "maximum %s"
msgstr "最大 %s"
#: libraries/config/FormDisplay.tpl.php:148 main.php:247
msgid "Wiki"
-msgstr "維基 (Wiki) "
+msgstr "維基 (Wiki)"
#: libraries/config/FormDisplay.tpl.php:219
msgid "This setting is disabled, it will not be applied to your configuration"
@@ -3718,7 +3717,7 @@ msgid "Set value: %s"
msgstr "設定值: %s"
#: libraries/config/FormDisplay.tpl.php:306
-#: libraries/config/messages.inc.php:359
+#: libraries/config/messages.inc.php:360
msgid "Restore default value"
msgstr "還原預設值"
@@ -4011,7 +4010,7 @@ msgid "Character set of the file"
msgstr "檔案字集"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92
-#: tbl_gis_visualization.php:174 tbl_printview.php:360 tbl_structure.php:908
+#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:908
msgid "Format"
msgstr "格式"
@@ -4110,7 +4109,7 @@ msgstr "關鍵標籤"
#: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114
#: libraries/config/messages.inc.php:138 libraries/export/odt.php:450
-#: libraries/tbl_properties.inc.php:136
+#: libraries/tbl_properties.inc.php:137
msgid "MIME type"
msgstr "MIME 類型"
@@ -4234,8 +4233,8 @@ msgstr "自定預設選項"
#: libraries/config/messages.inc.php:162 libraries/config/setup.forms.php:242
#: libraries/config/setup.forms.php:315
-#: libraries/config/user_preferences.forms.php:144
-#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:19
+#: libraries/config/user_preferences.forms.php:145
+#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr "CSV"
@@ -4659,89 +4658,95 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "顯示過濾框的最少資料表數量"
#: libraries/config/messages.inc.php:281
+#, fuzzy
+#| msgid "Minimum number of tables to display the table filter box"
+msgid "Minimum number of databases to display the database filter box"
+msgstr "顯示過濾框的最少資料表數量"
+
+#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
msgstr "將資料庫分爲不同樹的分隔字元串"
-#: libraries/config/messages.inc.php:282
+#: libraries/config/messages.inc.php:283
msgid "Database tree separator"
msgstr "樹狀資料庫分隔符號"
-#: libraries/config/messages.inc.php:283
+#: libraries/config/messages.inc.php:284
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr "只使用輕量級版本,以樹形顯示資料庫 (以下面的樹形分隔符號來顯示)"
-#: libraries/config/messages.inc.php:284
+#: libraries/config/messages.inc.php:285
msgid "Display databases in a tree"
msgstr "以樹形顯示資料庫"
-#: libraries/config/messages.inc.php:285
+#: libraries/config/messages.inc.php:286
msgid "Disable this if you want to see all databases at once"
msgstr "如果想一次性瀏覽所有資料庫,則停用該選項"
-#: libraries/config/messages.inc.php:286
+#: libraries/config/messages.inc.php:287
msgid "Use light version"
msgstr "使用輕量級版本"
-#: libraries/config/messages.inc.php:287
+#: libraries/config/messages.inc.php:288
msgid "Maximum table tree depth"
msgstr "資料表樹最大深度"
-#: libraries/config/messages.inc.php:288
+#: libraries/config/messages.inc.php:289
msgid "String that separates tables into different tree levels"
msgstr "將表分爲不同樹的分隔符號"
-#: libraries/config/messages.inc.php:289
+#: libraries/config/messages.inc.php:290
msgid "Table tree separator"
msgstr "樹形表分隔符號"
-#: libraries/config/messages.inc.php:290
+#: libraries/config/messages.inc.php:291
msgid "URL where logo in the navigation frame will point to"
msgstr "導覽框架中 logo 的網址"
-#: libraries/config/messages.inc.php:291
+#: libraries/config/messages.inc.php:292
msgid "Logo link URL"
msgstr "Logo 連結網址"
-#: libraries/config/messages.inc.php:292
+#: libraries/config/messages.inc.php:293
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr "在主視窗 ([kbd]main[/kbd]) 或新視窗 ([kbd]new[/kbd]) 開啟目標頁面"
-#: libraries/config/messages.inc.php:293
+#: libraries/config/messages.inc.php:294
msgid "Logo link target"
msgstr "Logo 連結目標"
-#: libraries/config/messages.inc.php:294
+#: libraries/config/messages.inc.php:295
msgid "Highlight server under the mouse cursor"
msgstr "醒目提示顯示鼠標所在位置的伺服器"
-#: libraries/config/messages.inc.php:295
+#: libraries/config/messages.inc.php:296
msgid "Enable highlighting"
msgstr "啓用醒目提示"
-#: libraries/config/messages.inc.php:296
+#: libraries/config/messages.inc.php:297
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
-#: libraries/config/messages.inc.php:297
+#: libraries/config/messages.inc.php:298
#, fuzzy
#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "未追蹤的資料表"
-#: libraries/config/messages.inc.php:298
+#: libraries/config/messages.inc.php:299
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr "瀏覽非數字欄位時所顯示的最大字元數"
-#: libraries/config/messages.inc.php:299
+#: libraries/config/messages.inc.php:300
msgid "Limit column characters"
msgstr "限制欄位字元數"
-#: libraries/config/messages.inc.php:300
+#: libraries/config/messages.inc.php:301
msgid ""
"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
"only occurs for the current server. Setting this to FALSE makes it easy to "
@@ -4750,21 +4755,21 @@ msgstr ""
"如果設爲 TRUE,在登出時將會刪除所有伺服器的 Cookies。如果設爲 FALSE,在您登錄"
"多臺伺服器的時候,容易忘記登出登錄"
-#: libraries/config/messages.inc.php:301
+#: libraries/config/messages.inc.php:302
msgid "Delete all cookies on logout"
msgstr "登出時刪除所有 cookies"
-#: libraries/config/messages.inc.php:302
+#: libraries/config/messages.inc.php:303
msgid ""
"Define whether the previous login should be recalled or not in cookie "
"authentication mode"
msgstr "定義在 cookie 認證方式中是否顯示上次登錄的帳號"
-#: libraries/config/messages.inc.php:303
+#: libraries/config/messages.inc.php:304
msgid "Recall user name"
msgstr "顯示上次登錄的帳號"
-#: libraries/config/messages.inc.php:304
+#: libraries/config/messages.inc.php:305
msgid ""
"Defines how long (in seconds) a login cookie should be stored in browser. "
"The default of 0 means that it will be kept for the existing session only, "
@@ -4775,48 +4780,48 @@ msgstr ""
"爲瀏覽器程序,在關閉瀏覽器之後 Cookies 就會被刪除。預設值爲0。在不安全的環境"
"下建議使用預設值"
-#: libraries/config/messages.inc.php:305
+#: libraries/config/messages.inc.php:306
msgid "Login cookie store"
msgstr "登錄 cookie 儲存"
-#: libraries/config/messages.inc.php:306
+#: libraries/config/messages.inc.php:307
msgid "Define how long (in seconds) a login cookie is valid"
msgstr "定義登錄 cookie 的有效期 (單位:秒)"
-#: libraries/config/messages.inc.php:307
+#: libraries/config/messages.inc.php:308
msgid "Login cookie validity"
msgstr "登錄 cookie 有效期"
-#: libraries/config/messages.inc.php:308
+#: libraries/config/messages.inc.php:309
msgid "Double size of textarea for LONGTEXT columns"
msgstr "放大一倍 LONGTEXT 欄位的輸入框"
-#: libraries/config/messages.inc.php:309
+#: libraries/config/messages.inc.php:310
msgid "Bigger textarea for LONGTEXT"
msgstr "放大 LONGTEXT 欄位的輸入框"
-#: libraries/config/messages.inc.php:310
+#: libraries/config/messages.inc.php:311
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "顯示 SQL 指令時可以使用的最多字元數"
-#: libraries/config/messages.inc.php:311
+#: libraries/config/messages.inc.php:312
msgid "Maximum displayed SQL length"
msgstr "顯示 SQL 指令的最大長度"
-#: libraries/config/messages.inc.php:312 libraries/config/messages.inc.php:317
-#: libraries/config/messages.inc.php:344
+#: libraries/config/messages.inc.php:313 libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:345
msgid "Users cannot set a higher value"
msgstr "使用者不能設定更大的值"
-#: libraries/config/messages.inc.php:313
+#: libraries/config/messages.inc.php:314
msgid "Maximum number of databases displayed in left frame and database list"
msgstr "在左欄和資料庫列資料表中最多顯示的資料庫個數"
-#: libraries/config/messages.inc.php:314
+#: libraries/config/messages.inc.php:315
msgid "Maximum databases"
msgstr "最大資料庫數量"
-#: libraries/config/messages.inc.php:315
+#: libraries/config/messages.inc.php:316
msgid ""
"Number of rows displayed when browsing a result set. If the result set "
"contains more rows, "Previous" and "Next" links will be "
@@ -4825,73 +4830,73 @@ msgstr ""
"瀏覽一個結果集時一次顯示的最多行數。如果結果集超過此值,將會顯示 "上一頁"
"" 和 "下一頁" 的連結"
-#: libraries/config/messages.inc.php:316
+#: libraries/config/messages.inc.php:317
msgid "Maximum number of rows to display"
msgstr "顯示的最多行數"
-#: libraries/config/messages.inc.php:318
+#: libraries/config/messages.inc.php:319
msgid "Maximum number of tables displayed in table list"
msgstr "在資料表列資料表中最多顯示的資料表個數"
-#: libraries/config/messages.inc.php:319
+#: libraries/config/messages.inc.php:320
msgid "Maximum tables"
msgstr "最大資料表數量"
-#: libraries/config/messages.inc.php:320
+#: libraries/config/messages.inc.php:321
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr "禁止顯示在使用 cookie 認證時缺少 mcrypt 的預設警告"
-#: libraries/config/messages.inc.php:321
+#: libraries/config/messages.inc.php:322
msgid "mcrypt warning"
msgstr "mcrypt 警告"
-#: libraries/config/messages.inc.php:322
+#: libraries/config/messages.inc.php:323
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]爲不限制)"
-#: libraries/config/messages.inc.php:323
+#: libraries/config/messages.inc.php:324
msgid "Memory limit"
msgstr "內存限制"
-#: libraries/config/messages.inc.php:324
+#: libraries/config/messages.inc.php:325
#, fuzzy
#| msgid "These are Edit, Inline edit, Copy and Delete links"
msgid "These are Edit, Copy and Delete links"
msgstr "它們是編輯、快速編輯、複製和刪除連結"
-#: libraries/config/messages.inc.php:325
+#: libraries/config/messages.inc.php:326
msgid "Where to show the table row links"
msgstr ""
-#: libraries/config/messages.inc.php:326
+#: libraries/config/messages.inc.php:327
msgid "Use natural order for sorting table and database names"
msgstr "爲資料庫和資料資料表名稱使用自然排序"
-#: libraries/config/messages.inc.php:327
+#: libraries/config/messages.inc.php:328
msgid "Natural order"
msgstr "自然排序"
-#: libraries/config/messages.inc.php:328 libraries/config/messages.inc.php:338
+#: libraries/config/messages.inc.php:329 libraries/config/messages.inc.php:339
msgid "Use only icons, only text or both"
msgstr "僅使用圖示、文字或都使用"
-#: libraries/config/messages.inc.php:329
+#: libraries/config/messages.inc.php:330
msgid "Iconic navigation bar"
msgstr "導覽列使用圖示"
-#: libraries/config/messages.inc.php:330
+#: libraries/config/messages.inc.php:331
msgid "use GZip output buffering for increased speed in HTTP transfers"
msgstr "使用 GZip 輸出快取以加快 HTTP 傳輸速度"
-#: libraries/config/messages.inc.php:331
+#: libraries/config/messages.inc.php:332
msgid "GZip output buffering"
msgstr "GZip 輸出快取"
-#: libraries/config/messages.inc.php:332
+#: libraries/config/messages.inc.php:333
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4899,42 +4904,42 @@ msgstr ""
"[kbd]SMART[/kbd] - 如:對 TIME、DATE、DATETIME 和 TIMESTAMP 類型的欄位遞減排"
"序,其他欄位遞增"
-#: libraries/config/messages.inc.php:333
+#: libraries/config/messages.inc.php:334
msgid "Default sorting order"
msgstr "預設排序"
-#: libraries/config/messages.inc.php:334
+#: libraries/config/messages.inc.php:335
msgid "Use persistent connections to MySQL databases"
msgstr "在連線到 MySQL 資料庫時使用持續連線"
-#: libraries/config/messages.inc.php:335
+#: libraries/config/messages.inc.php:336
msgid "Persistent connections"
msgstr "持續連線"
-#: libraries/config/messages.inc.php:336
+#: libraries/config/messages.inc.php:337
msgid ""
"Disable the default warning that is displayed on the database details "
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr "禁止在缺少 phpMyAdmin 進階功能所需資料表時在資料庫結構頁中顯示預設警告"
-#: libraries/config/messages.inc.php:337
+#: libraries/config/messages.inc.php:338
msgid "Missing phpMyAdmin configuration storage tables"
msgstr "丟失 phpMyAdmin 進階功能資料表"
-#: libraries/config/messages.inc.php:339
+#: libraries/config/messages.inc.php:340
msgid "Iconic table operations"
msgstr "資料表操作顯示"
-#: libraries/config/messages.inc.php:340
+#: libraries/config/messages.inc.php:341
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "禁止編輯 BLOB 和 BINARY 類型欄位"
-#: libraries/config/messages.inc.php:341
+#: libraries/config/messages.inc.php:342
msgid "Protect binary columns"
msgstr "保護二進制欄位"
-#: libraries/config/messages.inc.php:342
+#: libraries/config/messages.inc.php:343
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4943,113 +4948,113 @@ msgstr ""
"允許使用基於資料庫的查詢歷史 (需要 phpMyAdmin 進階功能)。如果停用,將使用 "
"JS 程序來顯示查詢歷史 (關閉視窗即丟失)"
-#: libraries/config/messages.inc.php:343
+#: libraries/config/messages.inc.php:344
msgid "Permanent query history"
msgstr "持續查詢歷史"
-#: libraries/config/messages.inc.php:345
+#: libraries/config/messages.inc.php:346
msgid "How many queries are kept in history"
msgstr "記錄查詢歷史的數量"
-#: libraries/config/messages.inc.php:346
+#: libraries/config/messages.inc.php:347
msgid "Query history length"
msgstr "查詢歷史個數"
-#: libraries/config/messages.inc.php:347
+#: libraries/config/messages.inc.php:348
msgid "Tab displayed when opening a new query window"
msgstr "開啟一個新查詢視窗時預設顯示的頁面"
-#: libraries/config/messages.inc.php:348
+#: libraries/config/messages.inc.php:349
msgid "Default query window tab"
msgstr "預設查詢視窗標籤"
-#: libraries/config/messages.inc.php:349
+#: libraries/config/messages.inc.php:350
msgid "Query window height (in pixels)"
msgstr "查詢視窗高度 (單位:像素)"
-#: libraries/config/messages.inc.php:350
+#: libraries/config/messages.inc.php:351
msgid "Query window height"
msgstr "查詢窗口高度"
-#: libraries/config/messages.inc.php:351
+#: libraries/config/messages.inc.php:352
msgid "Query window width (in pixels)"
msgstr "查詢窗口寬度 (單位:像素)"
-#: libraries/config/messages.inc.php:352
+#: libraries/config/messages.inc.php:353
msgid "Query window width"
msgstr "查詢窗口寬度"
-#: libraries/config/messages.inc.php:353
+#: libraries/config/messages.inc.php:354
msgid "Select which functions will be used for character set conversion"
msgstr "選擇進行字集轉換時使用的函數"
-#: libraries/config/messages.inc.php:354
+#: libraries/config/messages.inc.php:355
msgid "Recoding engine"
msgstr "記錄引擎"
-#: libraries/config/messages.inc.php:355
+#: libraries/config/messages.inc.php:356
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
-#: libraries/config/messages.inc.php:356
+#: libraries/config/messages.inc.php:357
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "將資料表改名為"
-#: libraries/config/messages.inc.php:357
+#: libraries/config/messages.inc.php:358
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr "每 X 單元格重複表頭,要禁止此功能請設爲 [kbd]0[/kbd]"
-#: libraries/config/messages.inc.php:358
+#: libraries/config/messages.inc.php:359
msgid "Repeat headers"
msgstr "重複表頭"
-#: libraries/config/messages.inc.php:360
+#: libraries/config/messages.inc.php:361
msgid "Save all edited cells at once"
msgstr ""
-#: libraries/config/messages.inc.php:361
+#: libraries/config/messages.inc.php:362
msgid "Directory where exports can be saved on server"
msgstr "伺服器上用來儲存匯出檔案的資料夾"
-#: libraries/config/messages.inc.php:362
+#: libraries/config/messages.inc.php:363
msgid "Save directory"
msgstr "保存文件夾"
-#: libraries/config/messages.inc.php:363
+#: libraries/config/messages.inc.php:364
msgid "Leave blank if not used"
msgstr "不使用請留空"
-#: libraries/config/messages.inc.php:364
+#: libraries/config/messages.inc.php:365
msgid "Host authorization order"
msgstr "主機認證模式"
-#: libraries/config/messages.inc.php:365
+#: libraries/config/messages.inc.php:366
msgid "Leave blank for defaults"
msgstr "預設請留空"
-#: libraries/config/messages.inc.php:366
+#: libraries/config/messages.inc.php:367
msgid "Host authorization rules"
msgstr "主機認證規則"
-#: libraries/config/messages.inc.php:367
+#: libraries/config/messages.inc.php:368
msgid "Allow logins without a password"
msgstr "允許空密碼登錄"
-#: libraries/config/messages.inc.php:368
+#: libraries/config/messages.inc.php:369
msgid "Allow root login"
msgstr "允許 root 使用者登錄"
-#: libraries/config/messages.inc.php:369
+#: libraries/config/messages.inc.php:370
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr "使用 HTTP 基本認證時顯示給使用者的提示資訊"
-#: libraries/config/messages.inc.php:370
+#: libraries/config/messages.inc.php:371
msgid "HTTP Realm"
msgstr "HTTP 提示資訊"
-#: libraries/config/messages.inc.php:371
+#: libraries/config/messages.inc.php:372
msgid ""
"The path for the config file for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (not located in your document root; suggested: /etc/"
@@ -5058,19 +5063,19 @@ msgstr ""
"[a@http://swekey.com]SweKey 硬件認證 [/a]的設定檔案路徑 (請勿置於您的檔案根資"
"料夾,推薦使用:/etc/swekey.conf)"
-#: libraries/config/messages.inc.php:372
+#: libraries/config/messages.inc.php:373
msgid "SweKey config file"
msgstr "SweKey 設定檔案"
-#: libraries/config/messages.inc.php:373
+#: libraries/config/messages.inc.php:374
msgid "Authentication method to use"
msgstr "要使用的認證方式"
-#: libraries/config/messages.inc.php:374 setup/frames/index.inc.php:136
+#: libraries/config/messages.inc.php:375 setup/frames/index.inc.php:136
msgid "Authentication type"
msgstr "認證方式"
-#: libraries/config/messages.inc.php:375
+#: libraries/config/messages.inc.php:376
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5078,41 +5083,41 @@ msgstr ""
"不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤 [/a]功能請留空,預設:"
"[kbd]pma_bookmark[/kbd]"
-#: libraries/config/messages.inc.php:376
+#: libraries/config/messages.inc.php:377
msgid "Bookmark table"
msgstr "書籤表"
-#: libraries/config/messages.inc.php:377
+#: libraries/config/messages.inc.php:378
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma_column_info[/kbd]"
msgstr "留空則不使用列資訊和MIME類型。預設值:[kbd]pma_column_info[/kbd]"
-#: libraries/config/messages.inc.php:378
+#: libraries/config/messages.inc.php:379
msgid "Column information table"
msgstr "列資訊表"
-#: libraries/config/messages.inc.php:379
+#: libraries/config/messages.inc.php:380
msgid "Compress connection to MySQL server"
msgstr "壓縮連線到 MySQL 伺服器"
-#: libraries/config/messages.inc.php:380
+#: libraries/config/messages.inc.php:381
msgid "Compress connection"
msgstr "壓縮連線"
-#: libraries/config/messages.inc.php:381
+#: libraries/config/messages.inc.php:382
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr "怎樣連線到伺服器,如果不確定,請選擇 tcp"
-#: libraries/config/messages.inc.php:382
+#: libraries/config/messages.inc.php:383
msgid "Connection type"
msgstr "連接方式"
-#: libraries/config/messages.inc.php:383
+#: libraries/config/messages.inc.php:384
msgid "Control user password"
msgstr "控制使用者的密碼"
-#: libraries/config/messages.inc.php:384
+#: libraries/config/messages.inc.php:385
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
@@ -5120,41 +5125,41 @@ msgstr ""
"一個特殊的被限制權限的 MySQL 使用者,參見 [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki [/a]"
-#: libraries/config/messages.inc.php:385
+#: libraries/config/messages.inc.php:386
msgid "Control user"
msgstr "控制使用者"
-#: libraries/config/messages.inc.php:386
+#: libraries/config/messages.inc.php:387
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
-#: libraries/config/messages.inc.php:387
+#: libraries/config/messages.inc.php:388
#, fuzzy
#| msgid "Control user"
msgid "Control host"
msgstr "控制使用者"
-#: libraries/config/messages.inc.php:388
+#: libraries/config/messages.inc.php:389
msgid "Count tables when showing database list"
msgstr "顯示資料庫列表時計算資料表的數量"
-#: libraries/config/messages.inc.php:389
+#: libraries/config/messages.inc.php:390
msgid "Count tables"
msgstr "統計資料表"
-#: libraries/config/messages.inc.php:390
+#: libraries/config/messages.inc.php:391
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
"kbd]"
msgstr "不使用設計功能請留空,預設:[kbd]pma_designer_coords[/kbd]"
-#: libraries/config/messages.inc.php:391
+#: libraries/config/messages.inc.php:392
msgid "Designer table"
msgstr "設計表"
-#: libraries/config/messages.inc.php:392
+#: libraries/config/messages.inc.php:393
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
@@ -5162,69 +5167,69 @@ msgstr ""
"參見 [a@http://sf.net/support/tracker.php?aid=1849494]PMA 缺陷 (bug) 跟蹤係"
"統 [/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外鏈,英文)[/a]"
-#: libraries/config/messages.inc.php:393
+#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
msgstr "禁止使用 INFORMATION_SCHEMA"
-#: libraries/config/messages.inc.php:394
+#: libraries/config/messages.inc.php:395
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr "要使用的 PHP 外掛,如果支援,推薦使用 mysqli"
-#: libraries/config/messages.inc.php:395
+#: libraries/config/messages.inc.php:396
msgid "PHP extension to use"
msgstr "要使用的 PHP 外掛"
-#: libraries/config/messages.inc.php:396
+#: libraries/config/messages.inc.php:397
msgid "Hide databases matching regular expression (PCRE)"
msgstr "該正則表達式 (PCRE,Perl 相容) 所符合的資料庫將被隱藏"
-#: libraries/config/messages.inc.php:397
+#: libraries/config/messages.inc.php:398
msgid "Hide databases"
msgstr "隱藏資料庫"
-#: libraries/config/messages.inc.php:398
+#: libraries/config/messages.inc.php:399
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
msgstr "不使用 SQL 查詢歷史功能請留空,預設:[kbd]pma_history[/kbd]"
-#: libraries/config/messages.inc.php:399
+#: libraries/config/messages.inc.php:400
msgid "SQL query history table"
msgstr "SQL 查詢歷史表"
-#: libraries/config/messages.inc.php:400
+#: libraries/config/messages.inc.php:401
msgid "Hostname where MySQL server is running"
msgstr "MySQL 伺服器的主機名"
-#: libraries/config/messages.inc.php:401
+#: libraries/config/messages.inc.php:402
msgid "Server hostname"
msgstr "伺服器主機名"
-#: libraries/config/messages.inc.php:402
+#: libraries/config/messages.inc.php:403
msgid "Logout URL"
msgstr "登出網址"
-#: libraries/config/messages.inc.php:403
+#: libraries/config/messages.inc.php:404
msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
-#: libraries/config/messages.inc.php:404
+#: libraries/config/messages.inc.php:405
#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "在資料表列資料表中最多顯示的資料表個數"
-#: libraries/config/messages.inc.php:405
+#: libraries/config/messages.inc.php:406
msgid "Try to connect without password"
msgstr "嘗試用空密碼連線"
-#: libraries/config/messages.inc.php:406
+#: libraries/config/messages.inc.php:407
msgid "Connect without password"
msgstr "用空密碼連線"
-#: libraries/config/messages.inc.php:407
+#: libraries/config/messages.inc.php:408
msgid ""
"You can use MySQL wildcard characters (% and _), escape them if you want to "
"use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not "
@@ -5236,28 +5241,28 @@ msgstr ""
"\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。透過該選項您可以對資料庫列表排序,只"
"需按順序輸入它們的名稱並加上 [kbd]*[/kbd],剩下的資料庫將按字母順序排在最後"
-#: libraries/config/messages.inc.php:408
+#: libraries/config/messages.inc.php:409
msgid "Show only listed databases"
msgstr "僅顯示列出的資料庫"
-#: libraries/config/messages.inc.php:409 libraries/config/messages.inc.php:450
+#: libraries/config/messages.inc.php:410 libraries/config/messages.inc.php:451
msgid "Leave empty if not using config auth"
msgstr "如果不使用 config 認證方式,請留空"
-#: libraries/config/messages.inc.php:410
+#: libraries/config/messages.inc.php:411
msgid "Password for config auth"
msgstr "config 認證方式的密碼"
-#: libraries/config/messages.inc.php:411
+#: libraries/config/messages.inc.php:412
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_pdf_pages[/kbd]"
-#: libraries/config/messages.inc.php:412
+#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
msgstr "PDF 大綱: 資料表頁"
-#: libraries/config/messages.inc.php:413
+#: libraries/config/messages.inc.php:414
msgid ""
"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
@@ -5266,31 +5271,31 @@ msgstr ""
"關聯、書籤、PDF 功能所用的資料庫。參見 [a@http://wiki.phpmyadmin.net/pma/"
"pmadb]pmadb [/a]。不使用請留空。預設: [kbd]phpmyadmin[/kbd]"
-#: libraries/config/messages.inc.php:414
+#: libraries/config/messages.inc.php:415
msgid "Database name"
msgstr "資料庫名"
-#: libraries/config/messages.inc.php:415
+#: libraries/config/messages.inc.php:416
msgid "Port on which MySQL server is listening, leave empty for default"
msgstr "MySQL 伺服器監聽的連接埠,留空爲預設"
-#: libraries/config/messages.inc.php:416
+#: libraries/config/messages.inc.php:417
msgid "Server port"
msgstr "伺服器端口"
-#: libraries/config/messages.inc.php:417
+#: libraries/config/messages.inc.php:418
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:418
+#: libraries/config/messages.inc.php:419
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used table"
msgstr "分析資料表"
-#: libraries/config/messages.inc.php:419
+#: libraries/config/messages.inc.php:420
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5298,139 +5303,139 @@ msgstr ""
"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,預"
"設:[kbd]pma_relation[/kbd]"
-#: libraries/config/messages.inc.php:420
+#: libraries/config/messages.inc.php:421
msgid "Relation table"
msgstr "關係表"
-#: libraries/config/messages.inc.php:421
+#: libraries/config/messages.inc.php:422
msgid "SQL command to fetch available databases"
msgstr "取得所有可用資料庫的 SQL 指令"
-#: libraries/config/messages.inc.php:422
+#: libraries/config/messages.inc.php:423
msgid "SHOW DATABASES command"
msgstr "顯示資料庫(SHOW DATABASES)命令"
-#: libraries/config/messages.inc.php:423
+#: libraries/config/messages.inc.php:424
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"參見[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認證方式 [/a]中的例子"
-#: libraries/config/messages.inc.php:424
+#: libraries/config/messages.inc.php:425
msgid "Signon session name"
msgstr "Signon 連線名"
-#: libraries/config/messages.inc.php:425
+#: libraries/config/messages.inc.php:426
msgid "Signon URL"
msgstr "登錄網址"
-#: libraries/config/messages.inc.php:426
+#: libraries/config/messages.inc.php:427
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr "MySQL 伺服器監聽的連線埠,留空爲預設"
-#: libraries/config/messages.inc.php:427
+#: libraries/config/messages.inc.php:428
msgid "Server socket"
msgstr "伺服器套接字 (socket)"
-#: libraries/config/messages.inc.php:428
+#: libraries/config/messages.inc.php:429
msgid "Enable SSL for connection to MySQL server"
msgstr "使用 SSL 連線到 MySQL 伺服器"
-#: libraries/config/messages.inc.php:429
+#: libraries/config/messages.inc.php:430
msgid "Use SSL"
msgstr "使用 SSL"
-#: libraries/config/messages.inc.php:430
+#: libraries/config/messages.inc.php:431
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_table_coords[/kbd]"
-#: libraries/config/messages.inc.php:431
+#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
msgstr "PDF 大綱: 資料表同時"
-#: libraries/config/messages.inc.php:432
+#: libraries/config/messages.inc.php:433
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma_table_info[/kbd]"
msgstr "描述顯示欄位的表,不使用請留空,預設:[kbd]pma_table_info[/kbd]"
-#: libraries/config/messages.inc.php:433
+#: libraries/config/messages.inc.php:434
msgid "Display columns table"
msgstr "顯示字段表"
-#: libraries/config/messages.inc.php:434
+#: libraries/config/messages.inc.php:435
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
-#: libraries/config/messages.inc.php:435
+#: libraries/config/messages.inc.php:436
#, fuzzy
#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "整理資料表"
-#: libraries/config/messages.inc.php:436
+#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr "設定當記錄資料庫建立時,是否在前面加上 DROP DATABASE IF EXISTS 命令"
-#: libraries/config/messages.inc.php:437
+#: libraries/config/messages.inc.php:438
msgid "Add DROP DATABASE"
msgstr "新增 DROP DATABASE"
-#: libraries/config/messages.inc.php:438
+#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr "設定當記錄資料表建立時,是否在前面加上 DROP TABLE IF EXISTS 命令"
-#: libraries/config/messages.inc.php:439
+#: libraries/config/messages.inc.php:440
msgid "Add DROP TABLE"
msgstr "新增 DROP TABLE"
-#: libraries/config/messages.inc.php:440
+#: libraries/config/messages.inc.php:441
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr "設定當記錄 view建立時,是否在前面加上 DROP VIEW IF EXISTS 命令"
-#: libraries/config/messages.inc.php:441
+#: libraries/config/messages.inc.php:442
msgid "Add DROP VIEW"
msgstr "新增 DROP VIEW"
-#: libraries/config/messages.inc.php:442
+#: libraries/config/messages.inc.php:443
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr "定義自動建立新版的命令列表"
-#: libraries/config/messages.inc.php:443
+#: libraries/config/messages.inc.php:444
msgid "Statements to track"
msgstr "要追蹤的命令"
-#: libraries/config/messages.inc.php:444
+#: libraries/config/messages.inc.php:445
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr "不使用 SQL 查詢追蹤功能請留空,預設:[kbd]pma_tracking[/kbd]"
-#: libraries/config/messages.inc.php:445
+#: libraries/config/messages.inc.php:446
msgid "SQL query tracking table"
msgstr "SQL 查詢追蹤表"
-#: libraries/config/messages.inc.php:446
+#: libraries/config/messages.inc.php:447
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr "設定追蹤系統是否自動爲資料表和 view建立版本"
-#: libraries/config/messages.inc.php:447
+#: libraries/config/messages.inc.php:448
msgid "Automatically create versions"
msgstr "自動建立版本"
-#: libraries/config/messages.inc.php:448
+#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "ve blank for no user preferences storage in database, suggested: [kbd]"
@@ -5440,33 +5445,33 @@ msgid ""
"pma_userconfig[/kbd]"
msgstr "不在資料庫中儲存使用者偏好請留空,預設:[kbd]pma_config[/kbd]"
-#: libraries/config/messages.inc.php:449
+#: libraries/config/messages.inc.php:450
msgid "User preferences storage table"
msgstr "使用者偏好表"
-#: libraries/config/messages.inc.php:451
+#: libraries/config/messages.inc.php:452
msgid "User for config auth"
msgstr "config 認證方式的帳號"
-#: libraries/config/messages.inc.php:452
+#: libraries/config/messages.inc.php:453
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
msgstr "一個好記的名字。留空將顯示主機名"
-#: libraries/config/messages.inc.php:453
+#: libraries/config/messages.inc.php:454
msgid "Verbose name of this server"
msgstr "伺服器名稱"
-#: libraries/config/messages.inc.php:454
+#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "設定是否給使用者顯示一個 "顯示所有 (記錄)" 的按鈕"
-#: libraries/config/messages.inc.php:455
+#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
msgstr "允許顯示所有行"
-#: libraries/config/messages.inc.php:456
+#: libraries/config/messages.inc.php:457
msgid ""
"Please note that enabling this has no effect with [kbd]config[/kbd] "
"authentication mode because the password is hard coded in the configuration "
@@ -5475,138 +5480,138 @@ msgstr ""
"注意:該選項不影響 [kbd]config[/kbd] 認證方式,因爲密碼是儲存在設定檔案中,該"
"選項也不限制直接執行可實現相同功能的命令"
-#: libraries/config/messages.inc.php:457
+#: libraries/config/messages.inc.php:458
msgid "Show password change form"
msgstr "顯示修改密碼"
-#: libraries/config/messages.inc.php:458
+#: libraries/config/messages.inc.php:459
msgid "Show create database form"
msgstr "顯示建立資料庫表單"
-#: libraries/config/messages.inc.php:459
+#: libraries/config/messages.inc.php:460
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:460
+#: libraries/config/messages.inc.php:461
#, fuzzy
#| msgid "Show more actions"
msgid "Show Creation timestamp"
msgstr "顯示更多操作"
-#: libraries/config/messages.inc.php:461
+#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:462
+#: libraries/config/messages.inc.php:463
msgid "Show Last update timestamp"
msgstr ""
-#: libraries/config/messages.inc.php:463
+#: libraries/config/messages.inc.php:464
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
-#: libraries/config/messages.inc.php:464
+#: libraries/config/messages.inc.php:465
#, fuzzy
#| msgid "Show master status"
msgid "Show Last check timestamp"
msgstr "查看主伺服器狀態"
-#: libraries/config/messages.inc.php:465
+#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
-#: libraries/config/messages.inc.php:466
+#: libraries/config/messages.inc.php:467
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "預設顯示模式"
-#: libraries/config/messages.inc.php:467
+#: libraries/config/messages.inc.php:468
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr "定義在編輯/插入模式中是否顯示欄位類型一列"
-#: libraries/config/messages.inc.php:468
+#: libraries/config/messages.inc.php:469
msgid "Show field types"
msgstr "顯示字段類型"
-#: libraries/config/messages.inc.php:469
+#: libraries/config/messages.inc.php:470
msgid "Display the function fields in edit/insert mode"
msgstr "在編輯/插入模式中顯示函數列"
-#: libraries/config/messages.inc.php:470
+#: libraries/config/messages.inc.php:471
msgid "Show function fields"
msgstr "顯示函數列"
-#: libraries/config/messages.inc.php:471
+#: libraries/config/messages.inc.php:472
msgid "Whether to show hint or not"
msgstr ""
-#: libraries/config/messages.inc.php:472
+#: libraries/config/messages.inc.php:473
#, fuzzy
#| msgid "Show grid"
msgid "Show hint"
msgstr "顯示網格"
-#: libraries/config/messages.inc.php:473
+#: libraries/config/messages.inc.php:474
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"顯示 [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 輸出的連結"
-#: libraries/config/messages.inc.php:474
+#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
msgstr "顯示 phpinfo() 連結"
-#: libraries/config/messages.inc.php:475
+#: libraries/config/messages.inc.php:476
msgid "Show detailed MySQL server information"
msgstr "顯示 MySQL 伺服器詳細資訊"
-#: libraries/config/messages.inc.php:476
+#: libraries/config/messages.inc.php:477
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
msgstr "定義是否顯示 phpMyAdmin 產生的 SQL 查詢"
-#: libraries/config/messages.inc.php:477
+#: libraries/config/messages.inc.php:478
msgid "Show SQL queries"
msgstr "顯示 SQL 查詢"
-#: libraries/config/messages.inc.php:478
+#: libraries/config/messages.inc.php:479
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
-#: libraries/config/messages.inc.php:479 libraries/sql_query_form.lib.php:358
+#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
#, fuzzy
#| msgid "Hide query box"
msgid "Retain query box"
msgstr "隱藏查詢框"
-#: libraries/config/messages.inc.php:480
+#: libraries/config/messages.inc.php:481
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr "允許顯示資料庫和資料表的統計資訊 (如:空間使用)"
-#: libraries/config/messages.inc.php:481
+#: libraries/config/messages.inc.php:482
msgid "Show statistics"
msgstr "顯示統計"
-#: libraries/config/messages.inc.php:482
+#: libraries/config/messages.inc.php:483
msgid ""
"If tooltips are enabled and a database comment is set, this will flip the "
"comment and the real name"
msgstr ""
"如果啓用了提示功能且設定了資料庫備註,這裏將簡略顯示資料庫備註和資料庫名"
-#: libraries/config/messages.inc.php:483
+#: libraries/config/messages.inc.php:484
msgid "Display database comment instead of its name"
msgstr "顯示資料庫的備註而不顯示資料庫名"
-#: libraries/config/messages.inc.php:484
+#: libraries/config/messages.inc.php:485
msgid ""
"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
"used to split/nest the tables according to the $cfg"
@@ -5617,28 +5622,28 @@ msgstr ""
"['LeftFrameTableSeparator'] 作分割/層疊用,所有只有目錄的名字像別名,資料表自"
"己的名字並不改變"
-#: libraries/config/messages.inc.php:485
+#: libraries/config/messages.inc.php:486
msgid "Display table comment instead of its name"
msgstr "顯示資料表備註而不顯示資料資料表名稱"
-#: libraries/config/messages.inc.php:486
+#: libraries/config/messages.inc.php:487
msgid "Display table comments in tooltips"
msgstr "在提示視窗顯示資料表備註"
-#: libraries/config/messages.inc.php:487
+#: libraries/config/messages.inc.php:488
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr "將已鎖定的資料表在資料庫中顯示爲使用中"
-#: libraries/config/messages.inc.php:488
+#: libraries/config/messages.inc.php:489
msgid "Skip locked tables"
msgstr "跳過鎖定的表"
-#: libraries/config/messages.inc.php:493
+#: libraries/config/messages.inc.php:494
msgid "Requires SQL Validator to be enabled"
msgstr "需要啓用 SQL 檢驗器"
-#: libraries/config/messages.inc.php:495
+#: libraries/config/messages.inc.php:496
#: libraries/display_change_password.lib.php:40
#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
#: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345
@@ -5648,36 +5653,36 @@ msgstr "需要啓用 SQL 檢驗器"
msgid "Password"
msgstr "密碼"
-#: libraries/config/messages.inc.php:496
+#: libraries/config/messages.inc.php:497
msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr "[strong]警告:[/strong]需要安裝 PHP SOAP 外掛或 PEAR SOAP"
-#: libraries/config/messages.inc.php:497
+#: libraries/config/messages.inc.php:498
msgid "Enable SQL Validator"
msgstr "啓用 SQL 檢驗器"
-#: libraries/config/messages.inc.php:498
+#: libraries/config/messages.inc.php:499
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr "如果您有自己的帳號,請在這裏輸入 (預設爲 [kbd]anonymous (匿名)[/kbd])"
-#: libraries/config/messages.inc.php:499 tbl_tracking.php:518
+#: libraries/config/messages.inc.php:500 tbl_tracking.php:518
#: tbl_tracking.php:577
msgid "Username"
msgstr "使用者名"
-#: libraries/config/messages.inc.php:500
+#: libraries/config/messages.inc.php:501
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr "若檢測到 Suhosin 將在首頁顯示一個警告"
-#: libraries/config/messages.inc.php:501
+#: libraries/config/messages.inc.php:502
msgid "Suhosin warning"
msgstr "Suhosin 警告"
-#: libraries/config/messages.inc.php:502
+#: libraries/config/messages.inc.php:503
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5685,11 +5690,11 @@ msgstr ""
"編輯模式的文字框大小 (列數),此值將用於 SQL 查詢文字框 (*2) 和查詢視窗 "
"(*1.25)"
-#: libraries/config/messages.inc.php:503
+#: libraries/config/messages.inc.php:504
msgid "Textarea columns"
msgstr "文本框列"
-#: libraries/config/messages.inc.php:504
+#: libraries/config/messages.inc.php:505
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
@@ -5697,31 +5702,31 @@ msgstr ""
"編輯模式的文字框大小 (行數),此值將用於 SQL 查詢文字框 (*2) 和查詢視窗 "
"(*1.25)"
-#: libraries/config/messages.inc.php:505
+#: libraries/config/messages.inc.php:506
msgid "Textarea rows"
msgstr "文字框行"
-#: libraries/config/messages.inc.php:506
+#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a database is selected"
msgstr "選中一個資料庫時瀏覽器視窗的標題"
-#: libraries/config/messages.inc.php:508
+#: libraries/config/messages.inc.php:509
msgid "Title of browser window when nothing is selected"
msgstr "未選擇時瀏覽器視窗的標題"
-#: libraries/config/messages.inc.php:509
+#: libraries/config/messages.inc.php:510
msgid "Default title"
msgstr "默認標題"
-#: libraries/config/messages.inc.php:510
+#: libraries/config/messages.inc.php:511
msgid "Title of browser window when a server is selected"
msgstr "選中一個伺服器時瀏覽器視窗的標題"
-#: libraries/config/messages.inc.php:512
+#: libraries/config/messages.inc.php:513
msgid "Title of browser window when a table is selected"
msgstr "選中一張資料表時瀏覽器視窗的標題"
-#: libraries/config/messages.inc.php:514
+#: libraries/config/messages.inc.php:515
msgid ""
"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
@@ -5732,53 +5737,53 @@ msgstr ""
"信任從代理 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd] 發來的 "
"HTTP_X_FORWARDED_FOR 頭"
-#: libraries/config/messages.inc.php:515
+#: libraries/config/messages.inc.php:516
msgid "List of trusted proxies for IP allow/deny"
msgstr "可信代理IP列表"
-#: libraries/config/messages.inc.php:516
+#: libraries/config/messages.inc.php:517
msgid "Directory on server where you can upload files for import"
msgstr "伺服器上用來存放匯入檔案的資料夾"
-#: libraries/config/messages.inc.php:517
+#: libraries/config/messages.inc.php:518
msgid "Upload directory"
msgstr "上傳資料夾"
-#: libraries/config/messages.inc.php:518
+#: libraries/config/messages.inc.php:519
msgid "Allow for searching inside the entire database"
msgstr "允許搜尋整個資料庫"
-#: libraries/config/messages.inc.php:519
+#: libraries/config/messages.inc.php:520
msgid "Use database search"
msgstr "使用資料庫搜尋"
-#: libraries/config/messages.inc.php:520
+#: libraries/config/messages.inc.php:521
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr "停用時,使用者不能設定下列選項,右側的複選框被忽略"
-#: libraries/config/messages.inc.php:521
+#: libraries/config/messages.inc.php:522
msgid "Enable the Developer tab in settings"
msgstr "啓用設定中的開發標籤"
-#: libraries/config/messages.inc.php:522 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
msgid "Check for latest version"
msgstr "檢查更新"
-#: libraries/config/messages.inc.php:523
+#: libraries/config/messages.inc.php:524
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr "允許在 phpMyAdmin 首頁面中檢查最新版本"
-#: libraries/config/messages.inc.php:524 setup/lib/index.lib.php:120
-#: setup/lib/index.lib.php:131 setup/lib/index.lib.php:152
-#: setup/lib/index.lib.php:163 setup/lib/index.lib.php:175
-#: setup/lib/index.lib.php:183 setup/lib/index.lib.php:190
-#: setup/lib/index.lib.php:231
+#: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:175 setup/lib/index.lib.php:187
+#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
+#: setup/lib/index.lib.php:243
msgid "Version check"
msgstr "檢查更新"
-#: libraries/config/messages.inc.php:525
+#: libraries/config/messages.inc.php:526
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
@@ -5786,7 +5791,7 @@ msgstr ""
"允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP "
"[/a] 壓縮"
-#: libraries/config/messages.inc.php:526
+#: libraries/config/messages.inc.php:527
msgid "ZIP"
msgstr "ZIP"
@@ -5807,84 +5812,84 @@ msgid "Signon authentication"
msgstr "Signon 認證"
#: libraries/config/setup.forms.php:250
-#: libraries/config/user_preferences.forms.php:152 libraries/import/ldi.php:35
+#: libraries/config/user_preferences.forms.php:153 libraries/import/ldi.php:35
msgid "CSV using LOAD DATA"
msgstr "CSV 使用 LOAD DATA"
#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:352
-#: libraries/config/user_preferences.forms.php:160
-#: libraries/config/user_preferences.forms.php:252 libraries/export/ods.php:18
+#: libraries/config/user_preferences.forms.php:161
+#: libraries/config/user_preferences.forms.php:253 libraries/export/ods.php:18
#: libraries/import/ods.php:29
msgid "Open Document Spreadsheet"
msgstr "OpenOffice 表格"
#: libraries/config/setup.forms.php:266
-#: libraries/config/user_preferences.forms.php:167
+#: libraries/config/user_preferences.forms.php:168
msgid "Quick"
msgstr "快速"
#: libraries/config/setup.forms.php:270
-#: libraries/config/user_preferences.forms.php:171
+#: libraries/config/user_preferences.forms.php:172
msgid "Custom"
msgstr "自訂"
#: libraries/config/setup.forms.php:291
-#: libraries/config/user_preferences.forms.php:191
+#: libraries/config/user_preferences.forms.php:192
msgid "Database export options"
msgstr "資料庫匯出選項"
#: libraries/config/setup.forms.php:324
-#: libraries/config/user_preferences.forms.php:224
+#: libraries/config/user_preferences.forms.php:225
#: libraries/export/excel.php:18
msgid "CSV for MS Excel"
msgstr "MS Excel 的 CSV 格式"
#: libraries/config/setup.forms.php:347
-#: libraries/config/user_preferences.forms.php:247
+#: libraries/config/user_preferences.forms.php:248
#: libraries/export/htmlword.php:18
msgid "Microsoft Word 2000"
msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:356
-#: libraries/config/user_preferences.forms.php:256 libraries/export/odt.php:24
+#: libraries/config/user_preferences.forms.php:257 libraries/export/odt.php:24
msgid "Open Document Text"
msgstr "OpenOffice 檔案"
-#: libraries/config/validate.lib.php:211
+#: libraries/config/validate.lib.php:212
msgid "Could not initialize Drizzle connection library"
msgstr ""
-#: libraries/config/validate.lib.php:220 libraries/config/validate.lib.php:228
+#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "無法連線到 MySQL 伺服器"
-#: libraries/config/validate.lib.php:239 libraries/config/validate.lib.php:246
+#: libraries/config/validate.lib.php:240 libraries/config/validate.lib.php:247
msgid "Could not connect to MySQL server"
msgstr "無法連線到 MySQL 伺服器"
-#: libraries/config/validate.lib.php:279
+#: libraries/config/validate.lib.php:280
msgid "Empty username while using config authentication method"
msgstr "使用 config 認證方式時 config 認證方式的帳號不能爲空"
-#: libraries/config/validate.lib.php:286
+#: libraries/config/validate.lib.php:287
msgid "Empty signon session name while using signon authentication method"
msgstr "使用 singon 認證方式時 Signon 連線名不能爲空"
-#: libraries/config/validate.lib.php:295
+#: libraries/config/validate.lib.php:296
msgid "Empty signon URL while using signon authentication method"
msgstr "使用 singon 認證方式時登錄網址不能爲空"
-#: libraries/config/validate.lib.php:343
+#: libraries/config/validate.lib.php:344
msgid "Empty phpMyAdmin control user while using pmadb"
msgstr "使用 PMA 資料庫時控制使用者不能爲空"
-#: libraries/config/validate.lib.php:348
+#: libraries/config/validate.lib.php:349
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr "使用 PMA 資料時控制使用者的密碼不能爲空"
-#: libraries/config/validate.lib.php:440
+#: libraries/config/validate.lib.php:441
#, php-format
msgid "Incorrect IP address: %s"
msgstr "%s 是一個錯誤的 IP 網址"
@@ -5904,7 +5909,7 @@ msgstr "缺少 %s 外掛。請檢查 PHP 設定"
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1846
+#: libraries/database_interface.lib.php:1848
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5912,17 +5917,17 @@ msgid ""
"configured)."
msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)"
-#: libraries/database_interface.lib.php:1849
+#: libraries/database_interface.lib.php:1851
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "伺服器沒有響應"
-#: libraries/database_interface.lib.php:1853
+#: libraries/database_interface.lib.php:1855
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1861
+#: libraries/database_interface.lib.php:1863
msgid "Details..."
msgstr "詳細..."
@@ -5987,7 +5992,7 @@ msgstr "建立資料表"
#: libraries/export/odt.php:531 libraries/export/texytext.php:407
#: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63
#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:861
-#: libraries/rte/rte_routines.lib.php:1379 libraries/tbl_properties.inc.php:84
+#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84
#: setup/frames/index.inc.php:135 tbl_structure.php:200
msgid "Name"
msgstr "名字"
@@ -6141,26 +6146,26 @@ msgstr "請下拉至所選格式並設定選項,其它格式請忽略"
msgid "Encoding Conversion:"
msgstr "編碼轉換:"
-#: libraries/display_git_revision.lib.php:48
+#: libraries/display_git_revision.lib.php:54
#, php-format
msgid "%1$s from %2$s branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:50
+#: libraries/display_git_revision.lib.php:56
msgid "no branch"
msgstr ""
-#: libraries/display_git_revision.lib.php:57
+#: libraries/display_git_revision.lib.php:63
msgid "Git revision"
msgstr ""
-#: libraries/display_git_revision.lib.php:60
+#: libraries/display_git_revision.lib.php:66
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "committed on %1$s by %2$s"
msgstr "爲 %2$s.%3$s 建立版本 %1$s"
-#: libraries/display_git_revision.lib.php:68
+#: libraries/display_git_revision.lib.php:74
#, fuzzy, php-format
#| msgid "Create version %s of %s.%s"
msgid "authored on %1$s by %2$s"
@@ -6172,8 +6177,8 @@ msgid ""
"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) "
"browsers."
msgstr ""
-"上傳的檔案可能超過了最大大小,也可能是一個基於 webkit 瀏覽器 (Safari, Google "
-"Chrome, Arora 等) 的已知缺陷 (bug) "
+"上傳的檔案可能超過了最大大小,也可能是一個基於 webkit 瀏覽器 (Safari, Google Chrome, Arora 等) 的已知缺陷 "
+"(bug)."
#: libraries/display_import.lib.php:69
#, php-format
@@ -6860,18 +6865,17 @@ msgid "Display MIME types"
msgstr "顯示 MIME 類型"
#: libraries/export/latex.php:204 libraries/export/sql.php:584
-#: libraries/export/xml.php:143 libraries/header_printview.inc.php:57
-#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:179
-#: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278
-#: libraries/replication_gui.lib.php:335 server_privileges.php:914
-#: server_privileges.php:917 server_privileges.php:973
-#: server_privileges.php:1852 server_privileges.php:2418
-#: server_status.php:1253
+#: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66
+#: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
+#: server_privileges.php:914 server_privileges.php:917
+#: server_privileges.php:973 server_privileges.php:1852
+#: server_privileges.php:2418 server_status.php:1253 sql.php:932
msgid "Host"
msgstr "主機"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 libraries/header_printview.inc.php:59
+#: libraries/export/xml.php:148 sql.php:934
msgid "Generation Time"
msgstr "產生日期"
@@ -7094,15 +7098,7 @@ msgstr "未找到圖表所需資料"
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/header_printview.inc.php:47 libraries/header_printview.inc.php:55
-msgid "SQL result"
-msgstr "SQL 查詢結果"
-
-#: libraries/header_printview.inc.php:60
-msgid "Generated by"
-msgstr "產生者"
-
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1256
+#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查詢結果爲空 (即零行)"
@@ -7176,7 +7172,7 @@ msgstr ""
#: libraries/import/csv.php:94
msgid "Column names: "
-msgstr "欄位名稱:"
+msgstr "欄位名稱: "
#: libraries/import/csv.php:116 libraries/import/csv.php:129
#: libraries/import/csv.php:134 libraries/import/csv.php:139
@@ -7207,7 +7203,7 @@ msgstr "CSV 輸入的第 %d 行欄位數有錯"
msgid "DocSQL"
msgstr "DocSQL"
-#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:678
+#: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:705
#: server_synchronize.php:524 server_synchronize.php:1044
msgid "Table name"
msgstr "資料資料表名稱"
@@ -7567,7 +7563,7 @@ msgstr "建立 PDF"
msgid "Displaying Column Comments"
msgstr "顯示欄位註釋"
-#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:137
+#: libraries/relation.lib.php:176 libraries/tbl_properties.inc.php:138
#: transformation_overview.php:46
msgid "Browser transformation"
msgstr "瀏覽器轉換"
@@ -7668,10 +7664,10 @@ msgid "Variable"
msgstr "變數"
#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1384 libraries/tbl_select.lib.php:90
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:354 tbl_structure.php:900 tbl_zoom_select.php:430
+#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
msgid "Value"
msgstr "值"
@@ -7730,7 +7726,7 @@ msgstr "產生密碼"
#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254
#: libraries/rte/rte_routines.lib.php:259
#: libraries/rte/rte_routines.lib.php:283
-#: libraries/rte/rte_routines.lib.php:1263
+#: libraries/rte/rte_routines.lib.php:1262
#: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80
#: libraries/rte/rte_triggers.lib.php:103
#, fuzzy, php-format
@@ -7771,8 +7767,8 @@ msgid "Edit event"
msgstr "編輯伺服器"
#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372
-#: libraries/rte/rte_routines.lib.php:1289
-#: libraries/rte/rte_routines.lib.php:1325
+#: libraries/rte/rte_routines.lib.php:1288
+#: libraries/rte/rte_routines.lib.php:1324
#: libraries/rte/rte_triggers.lib.php:187
#, fuzzy
#| msgid "Error in Processing Request"
@@ -7835,7 +7831,7 @@ msgstr "完整插入"
msgid "Definer"
msgstr ""
-#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:999
+#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998
#: libraries/rte/rte_triggers.lib.php:398
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
@@ -7891,7 +7887,7 @@ msgid ""
msgstr ""
#: libraries/rte/rte_routines.lib.php:247
-#: libraries/rte/rte_routines.lib.php:1007
+#: libraries/rte/rte_routines.lib.php:1006
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
@@ -7979,59 +7975,59 @@ msgstr "安全"
msgid "SQL data access"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1012
+#: libraries/rte/rte_routines.lib.php:1011
msgid "You must provide a routine name"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1038
+#: libraries/rte/rte_routines.lib.php:1037
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1052
-#: libraries/rte/rte_routines.lib.php:1092
+#: libraries/rte/rte_routines.lib.php:1051
+#: libraries/rte/rte_routines.lib.php:1091
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1070
+#: libraries/rte/rte_routines.lib.php:1069
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1080
+#: libraries/rte/rte_routines.lib.php:1079
msgid "You must provide a valid return type for the routine."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1126
+#: libraries/rte/rte_routines.lib.php:1125
msgid "You must provide a routine definition."
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1217
+#: libraries/rte/rte_routines.lib.php:1216
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: libraries/rte/rte_routines.lib.php:1233
+#: libraries/rte/rte_routines.lib.php:1232
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "允許運行 Procedure"
-#: libraries/rte/rte_routines.lib.php:1313
-#: libraries/rte/rte_routines.lib.php:1319
+#: libraries/rte/rte_routines.lib.php:1312
+#: libraries/rte/rte_routines.lib.php:1318
msgid "Execute routine"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1372
-#: libraries/rte/rte_routines.lib.php:1375
+#: libraries/rte/rte_routines.lib.php:1371
+#: libraries/rte/rte_routines.lib.php:1374
#, fuzzy
#| msgid "Routines"
msgid "Routine parameters"
msgstr "一般"
-#: libraries/rte/rte_routines.lib.php:1382 libraries/tbl_select.lib.php:82
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
#: tbl_change.php:297 tbl_change.php:353
msgid "Function"
msgstr "函數"
@@ -8246,7 +8242,7 @@ msgstr "目錄"
#: libraries/schema/Pdf_Relation_Schema.class.php:1310
#: libraries/schema/Pdf_Relation_Schema.class.php:1331
-#: libraries/tbl_properties.inc.php:90 tbl_structure.php:203
+#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203
msgid "Attributes"
msgstr "屬性"
@@ -8343,12 +8339,12 @@ msgid "Toggle scratchboard"
msgstr "切換草稿板"
#. l10n: Text direction, use either ltr or rtl
-#: libraries/select_lang.lib.php:495
+#: libraries/select_lang.lib.php:497
msgid "ltr"
msgstr "ltr"
-#: libraries/select_lang.lib.php:513 libraries/select_lang.lib.php:522
-#: libraries/select_lang.lib.php:531
+#: libraries/select_lang.lib.php:515 libraries/select_lang.lib.php:524
+#: libraries/select_lang.lib.php:533
#, php-format
msgid "Unknown language: %1$s."
msgstr "未知的語言:%1$s."
@@ -8394,7 +8390,7 @@ msgstr "在伺服器 %s 運行 SQL 查詢"
msgid "Run SQL query/queries on database %s"
msgstr "在資料庫 %s 運行 SQL 查詢"
-#: libraries/sql_query_form.lib.php:267 navigation.php:260
+#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
#: setup/frames/index.inc.php:257
msgid "Clear"
msgstr "清除"
@@ -8403,11 +8399,11 @@ msgstr "清除"
msgid "Columns"
msgstr "字段"
-#: libraries/sql_query_form.lib.php:307 sql.php:1056 sql.php:1073
+#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
msgid "Bookmark this SQL query"
msgstr "將此 SQL 查詢加爲書籤"
-#: libraries/sql_query_form.lib.php:313 sql.php:1067
+#: libraries/sql_query_form.lib.php:313 sql.php:1096
msgid "Let every user access this bookmark"
msgstr "讓所有使用者均可訪問此書籤"
@@ -8425,7 +8421,7 @@ msgstr "指令定界符"
#: libraries/sql_query_form.lib.php:350
msgid "Show this query here again"
-msgstr "在此再次顯示此查詢 "
+msgstr "在此再次顯示此查詢"
#: libraries/sql_query_form.lib.php:406
msgid "View only"
@@ -8502,13 +8498,13 @@ msgid ""
msgstr ""
"SQL 檢驗程序無法原始化。請檢查是否已經安裝了%s檔案%s內說明的必需 PHP 外掛"
-#: libraries/tbl_common.inc.php:56
+#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
#| msgid "Tracking of %s.%s is activated."
msgid "Tracking of %s is activated."
msgstr "%s.%s 的追蹤已啓用"
-#: libraries/tbl_properties.inc.php:87
+#: libraries/tbl_properties.inc.php:88
msgid ""
"If column type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
@@ -8518,36 +8514,36 @@ msgstr ""
"如欄位類型是“enum”或“set”,請使用以下格式輸入:'a','b','c'... 如果需要輸"
"入反斜槓(“\\”)或單引號(“'”),請在前面加上反斜槓(如 '\\\\xyz' 或 'a\\'b')"
-#: libraries/tbl_properties.inc.php:88
+#: libraries/tbl_properties.inc.php:89
msgid ""
"For default values, please enter just a single value, without backslash "
"escaping or quotes, using this format: a"
msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號,請用此格式:a"
-#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:512
-#: tbl_printview.php:310 tbl_structure.php:149 tbl_structure.php:154
+#: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531
+#: tbl_printview.php:308 tbl_structure.php:149 tbl_structure.php:154
#: tbl_structure.php:596 tbl_structure.php:847
msgid "Index"
msgstr "索引"
-#: libraries/tbl_properties.inc.php:120
+#: libraries/tbl_properties.inc.php:121
#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
msgstr "刪除欄位"
-#: libraries/tbl_properties.inc.php:129
+#: libraries/tbl_properties.inc.php:130
#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr "要取得可用轉換選項的列表及對應的 MIME 類型轉換,請點選%s轉換說明%s"
-#: libraries/tbl_properties.inc.php:138
+#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
msgstr "轉換選項"
-#: libraries/tbl_properties.inc.php:139
+#: libraries/tbl_properties.inc.php:140
msgid ""
"Please enter the values for transformation options using this format: 'a', "
"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
@@ -8557,74 +8553,74 @@ msgstr ""
"請使用此格式輸入轉換選項的值:'a',100,b,'c'... 如果您需要在值中輸入反斜"
"槓 (“\\”)或單引號(“'”),請在前面加上反斜槓 (如 '\\\\xyz' 或 'a\\'b')"
-#: libraries/tbl_properties.inc.php:347
+#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
msgstr "ENUM 或 SET 資料過長?"
-#: libraries/tbl_properties.inc.php:349
+#: libraries/tbl_properties.inc.php:371
msgid "Get more editing space"
msgstr "取得更多編輯空間"
-#: libraries/tbl_properties.inc.php:365
+#: libraries/tbl_properties.inc.php:387
msgctxt "for default"
msgid "None"
msgstr "無"
-#: libraries/tbl_properties.inc.php:366
+#: libraries/tbl_properties.inc.php:388
msgid "As defined:"
msgstr "定義:"
-#: libraries/tbl_properties.inc.php:498 tbl_structure.php:148
+#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148
#: tbl_structure.php:153 tbl_structure.php:588
msgid "Primary"
msgstr "主鍵"
-#: libraries/tbl_properties.inc.php:520 tbl_structure.php:152
+#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152
#: tbl_structure.php:157 tbl_structure.php:613
msgid "Fulltext"
msgstr "全文搜尋"
-#: libraries/tbl_properties.inc.php:570
+#: libraries/tbl_properties.inc.php:589
msgid "first"
msgstr ""
-#: libraries/tbl_properties.inc.php:579
+#: libraries/tbl_properties.inc.php:599
#, fuzzy, php-format
#| msgid "After %s"
msgid "after %s"
msgstr "於 %s 之後"
-#: libraries/tbl_properties.inc.php:691 tbl_structure.php:697
+#: libraries/tbl_properties.inc.php:719 tbl_structure.php:697
#, php-format
msgid "Add %s column(s)"
msgstr "增加 %s 個字段"
-#: libraries/tbl_properties.inc.php:698 tbl_structure.php:691
+#: libraries/tbl_properties.inc.php:727 tbl_structure.php:691
msgid "You have to add at least one column."
msgstr "至少要增加一個字段。"
-#: libraries/tbl_properties.inc.php:788 server_engines.php:41
+#: libraries/tbl_properties.inc.php:820 server_engines.php:41
#: tbl_operations.php:377
msgid "Storage Engine"
msgstr "儲存引擎"
-#: libraries/tbl_properties.inc.php:829
+#: libraries/tbl_properties.inc.php:861
msgid "PARTITION definition"
msgstr "分區定義"
-#: libraries/tbl_select.lib.php:89 pmd_general.php:505 pmd_general.php:525
+#: libraries/tbl_select.lib.php:96 pmd_general.php:505 pmd_general.php:525
#: pmd_general.php:647 pmd_general.php:660 pmd_general.php:723
#: pmd_general.php:777
msgid "Operator"
msgstr "運算符"
-#: libraries/tbl_select.lib.php:106
+#: libraries/tbl_select.lib.php:113
#, fuzzy
#| msgid "Search"
msgid "Table Search"
msgstr "搜尋"
-#: libraries/tbl_select.lib.php:178 tbl_change.php:1036
+#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
@@ -8772,11 +8768,11 @@ msgid ""
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr "您的偏好將僅作用於本次連線。要想永久儲存需要 %sphpMyAdmin 進階功能%s"
-#: libraries/user_preferences.lib.php:119
+#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
msgstr "無法儲存設定"
-#: libraries/user_preferences.lib.php:285
+#: libraries/user_preferences.lib.php:291
msgid ""
"Your browser has phpMyAdmin configuration for this domain. Would you like to "
"import it for current session?"
@@ -8786,8 +8782,8 @@ msgstr "您的瀏覽器中有目前域的 phpMyAdmin 設定。是否匯入到目
msgid "No files found inside ZIP archive!"
msgstr "ZIP 包中未找到檔案!"
-#: libraries/zip_extension.lib.php:56 libraries/zip_extension.lib.php:58
-#: libraries/zip_extension.lib.php:73
+#: libraries/zip_extension.lib.php:59 libraries/zip_extension.lib.php:62
+#: libraries/zip_extension.lib.php:82
msgid "Error in ZIP archive:"
msgstr "ZIP 包中有錯誤:"
@@ -8965,18 +8961,24 @@ msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似
msgid "No databases"
msgstr "無資料庫"
-#: navigation.php:261
+#: navigation.php:209
+#, fuzzy
+#| msgid "filter tables by name"
+msgid "Filter databases by name"
+msgstr "請輸入部分或完整的表名"
+
+#: navigation.php:272
#, fuzzy
#| msgid "filter tables by name"
msgid "Filter tables by name"
msgstr "請輸入部分或完整的表名"
-#: navigation.php:294 navigation.php:295
+#: navigation.php:305 navigation.php:306
msgctxt "short form"
msgid "Create table"
msgstr "新建資料表"
-#: navigation.php:300 navigation.php:470
+#: navigation.php:311 navigation.php:481
msgid "Please select a database"
msgstr "請選擇資料庫"
@@ -9373,7 +9375,7 @@ msgstr "允許建立新資料庫和資料表"
#: server_privileges.php:96 server_privileges.php:360
#: server_privileges.php:732
msgid "Allows creating stored routines."
-msgstr "允許建立 stored routines "
+msgstr "允許建立 stored routines."
#: server_privileges.php:97 server_privileges.php:726
msgid "Allows creating new tables."
@@ -9393,7 +9395,7 @@ msgstr "允許建立、刪除和重命名使用者帳號"
#: server_privileges.php:347 server_privileges.php:738
#: server_privileges.php:742
msgid "Allows creating new views."
-msgstr "允許建立 views "
+msgstr "允許建立 views."
#: server_privileges.php:101 server_privileges.php:270
#: server_privileges.php:718
@@ -9548,7 +9550,7 @@ msgstr "按表指定權限"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "注意:MySQL 權限名稱會以英文顯示 "
+msgstr "注意:MySQL 權限名稱會以英文顯示"
#: server_privileges.php:711
msgid "Administration"
@@ -9788,7 +9790,7 @@ msgstr "未知錯誤"
#: server_replication.php:86
#, php-format
msgid "Unable to connect to master %s."
-msgstr "無法連線到主伺服器 %s "
+msgstr "無法連線到主伺服器 %s"
#: server_replication.php:93
msgid ""
@@ -9953,7 +9955,7 @@ msgstr ""
#: server_status.php:468
#, php-format
msgid "Thread %s was successfully killed."
-msgstr "已中止程序 %s "
+msgstr "已中止程序 %s"
#: server_status.php:470
#, php-format
@@ -10119,7 +10121,7 @@ msgstr ""
msgid "Questions since startup: %s"
msgstr "自訂起始頁"
-#: server_status.php:977 tbl_printview.php:353 tbl_structure.php:899
+#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "說明"
@@ -10255,8 +10257,7 @@ msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
-msgstr ""
-"發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值) "
+msgstr "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值)"
#: server_status.php:1326
msgid ""
@@ -10295,8 +10296,8 @@ msgid ""
"it suggests that the server is doing a lot of full index scans; for example, "
"SELECT col1 FROM foo, assuming that col1 is indexed."
msgstr ""
-"讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃"
-"描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo "
+"讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 "
+"FROM foo"
#: server_status.php:1333
msgid ""
@@ -10356,7 +10357,7 @@ msgstr "資料表中插入行的請求數"
#: server_status.php:1341
msgid "The number of pages containing data (dirty or clean)."
-msgstr "非空頁數 (含髒頁) "
+msgstr "非空頁數 (含髒頁)"
#: server_status.php:1342
msgid "The number of pages currently dirty."
@@ -10386,9 +10387,8 @@ msgid ""
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-"負載頁的數量,像鎖定行或適應性的散列索引這樣的管理操作時分配的頁。該值可用此"
-"公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
-"Innodb_buffer_pool_pages_data "
+"負載頁的數量,像鎖定行或適應性的散列索引這樣的管理操作時分配的頁。該值可用此公式計算: Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data"
#: server_status.php:1347
msgid "Total size of buffer pool, in pages."
@@ -10564,8 +10564,7 @@ msgstr "InnoDB 中更新的行數"
msgid ""
"The number of key blocks in the key cache that have changed but haven't yet "
"been flushed to disk. It used to be known as Not_flushed_key_blocks."
-msgstr ""
-"鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks "
+msgstr "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks"
#: server_status.php:1385
msgid ""
@@ -11299,26 +11298,26 @@ msgstr "忽略錯誤"
msgid "Show form"
msgstr "顯示資料表單"
-#: setup/lib/index.lib.php:121
+#: setup/lib/index.lib.php:133
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
msgstr "URL 協定和 CURL 都不可用,無法檢查新版本"
-#: setup/lib/index.lib.php:132
+#: setup/lib/index.lib.php:144
msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr "讀取版本資訊失敗。您可能尚未接入網絡或更新伺服器未響應"
-#: setup/lib/index.lib.php:153
+#: setup/lib/index.lib.php:165
msgid "Got invalid version string from server"
msgstr "從伺服器取得版本錯誤"
-#: setup/lib/index.lib.php:164
+#: setup/lib/index.lib.php:176
msgid "Unparsable version string"
msgstr "無法解析版本"
-#: setup/lib/index.lib.php:184
+#: setup/lib/index.lib.php:196
#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
@@ -11327,11 +11326,11 @@ msgstr ""
"您現在使用的是開發版,請透過 [kbd]git pull[/kbd] 檢查更新 :-)[br]最新正式版"
"爲 %s,於 %s 發佈"
-#: setup/lib/index.lib.php:191
+#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
msgstr "沒有更新的可用版本"
-#: setup/lib/index.lib.php:282
+#: setup/lib/index.lib.php:294
#, php-format
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
@@ -11342,7 +11341,7 @@ msgstr ""
"該%s選項%s應該被關閉以防止有人嘗試暴力破解 MySQL 伺服器。如果有必要,您可以使"
"用%s可信代理表%s。但如果您和許多人共用一個 IP 網址,該措施的安全性將下降"
-#: setup/lib/index.lib.php:284
+#: setup/lib/index.lib.php:296
msgid ""
"You didn't have blowfish secret set and have enabled cookie authentication, "
"so a key was automatically generated for you. It is used to encrypt cookies; "
@@ -11351,14 +11350,14 @@ msgstr ""
"您開啟了 Cookies 認證方式,但沒有設定短語密碼,因此系統自動產生了一個短語密"
"碼,該密語用於加密 Cookies。您不需要記住這個短語密碼"
-#: setup/lib/index.lib.php:285
+#: setup/lib/index.lib.php:297
#, php-format
msgid ""
"%sBzip2 compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr "此系統目前不支援 %sBzip2 壓縮和解壓縮%s所必須的 (%s) 函數"
-#: setup/lib/index.lib.php:287
+#: setup/lib/index.lib.php:299
msgid ""
"This value should be double checked to ensure that this directory is neither "
"world accessible nor readable or writable by other users on your server."
@@ -11366,19 +11365,19 @@ msgstr ""
"對該值應該進行小心謹慎的檢查,確保伺服器上的其他使用者對該資料夾都沒有讀取和"
"寫入的權限"
-#: setup/lib/index.lib.php:288
+#: setup/lib/index.lib.php:300
#, php-format
msgid "This %soption%s should be enabled if your web server supports it."
msgstr "如果瀏覽器支援,建議啓用該%s選項%s"
-#: setup/lib/index.lib.php:290
+#: setup/lib/index.lib.php:302
#, php-format
msgid ""
"%sGZip compression and decompression%s requires functions (%s) which are "
"unavailable on this system."
msgstr "此系統目前不支援 %sGZip 壓縮和解壓縮%s所必須的 (%s) 函數"
-#: setup/lib/index.lib.php:292
+#: setup/lib/index.lib.php:304
#, php-format
msgid ""
"%sLogin cookie validity%s greater than 1440 seconds may cause random session "
@@ -11388,7 +11387,7 @@ msgstr ""
"如果%s登錄 cookie 有效期%s超過 1440 秒且超過 %ssession.gc_maxlifetime%s 的值 "
"(目前 %d) 則可能導致連線隨機失效"
-#: setup/lib/index.lib.php:294
+#: setup/lib/index.lib.php:306
#, php-format
msgid ""
"%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at "
@@ -11397,7 +11396,7 @@ msgstr ""
"%s登錄 cookie 有效期%s不應超過 1800 秒 (30 分鐘)。如果有效期大於 1800 秒,將"
"會增加安全風險"
-#: setup/lib/index.lib.php:296
+#: setup/lib/index.lib.php:308
#, php-format
msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
@@ -11406,7 +11405,7 @@ msgstr ""
"如果使用 cookie 認證且%s登錄 cookie 儲存時間%s不爲 0,%s登錄 cookie 有效期%s"
"的值不能超過前者"
-#: setup/lib/index.lib.php:298
+#: setup/lib/index.lib.php:310
#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - %shost "
@@ -11417,7 +11416,7 @@ msgstr ""
"如果有必要,您可以使用額外的保護設定 - %s主機認證%s和%s可信代理表%s。但如果您"
"和許多人共用一個 IP 網址,該措施的安全性將下降"
-#: setup/lib/index.lib.php:300
+#: setup/lib/index.lib.php:312
#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
@@ -11431,39 +11430,39 @@ msgstr ""
"phpMyAdmin 的管理界面。建議將%s認證方式%s設定爲 [kbd]cookie 認證[/kbd]或 "
"[kbd]HTTP 認證[/kbd]"
-#: setup/lib/index.lib.php:302
+#: setup/lib/index.lib.php:314
#, php-format
msgid ""
"%sZip compression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "此系統目前不支援 %sZip 壓縮%s所必須的 (%s) 函數"
-#: setup/lib/index.lib.php:304
+#: setup/lib/index.lib.php:316
#, php-format
msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr "此系統目前不支援 %sZip 解壓縮%s所必須的 (%s) 函數"
-#: setup/lib/index.lib.php:332
+#: setup/lib/index.lib.php:344
#, fuzzy
#| msgid "You should use SSL connections if your web server supports it."
msgid "You should use SSL connections if your database server supports it."
msgstr "如果伺服器支援,您應該使用 SSL 連線"
-#: setup/lib/index.lib.php:346
+#: setup/lib/index.lib.php:359
msgid "You should use mysqli for performance reasons."
msgstr "您可以使用 mysqli 以取得更高的性能"
-#: setup/lib/index.lib.php:381
+#: setup/lib/index.lib.php:396
msgid "You allow for connecting to the server without a password."
msgstr "該伺服器現在允許空密碼登錄"
-#: setup/lib/index.lib.php:405
+#: setup/lib/index.lib.php:420
msgid "Key is too short, it should have at least 8 characters."
msgstr "短語密碼太短,至少應有 8 個字元"
-#: setup/lib/index.lib.php:412
+#: setup/lib/index.lib.php:427
msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元"
@@ -11473,8 +11472,8 @@ msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元"
msgid "Wrong data"
msgstr "沒有資料庫"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:99
-#: tbl_zoom_select.php:135
+#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
+#: tbl_zoom_select.php:136
msgid "Browse foreign values"
msgstr "瀏覽不相關的值"
@@ -11506,21 +11505,29 @@ msgstr "顯示 SQL 查詢"
msgid "Validated SQL"
msgstr "已校驗的 SQL"
-#: sql.php:1029
+#: sql.php:930
+msgid "SQL result"
+msgstr "SQL 查詢結果"
+
+#: sql.php:935
+msgid "Generated by"
+msgstr "產生者"
+
+#: sql.php:1058
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "資料表 `%s` 的索引存在問題"
-#: sql.php:1061
+#: sql.php:1090
msgid "Label"
msgstr "標籤"
-#: tbl_addfield.php:190 tbl_alter.php:215 tbl_indexes.php:105
+#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105
#, php-format
msgid "Table %1$s has been altered successfully"
-msgstr "已成功修改表 %1$s "
+msgstr "已成功修改表 %1$s"
-#: tbl_alter.php:131
+#: tbl_alter.php:130
#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
@@ -11528,7 +11535,7 @@ msgstr "已成功刪除選中的使用者"
#: tbl_change.php:745
msgid "Because of its length, this column might not be editable"
-msgstr "因長度問題, 該欄位可能無法編輯 "
+msgstr "因長度問題, 該欄位可能無法編輯"
#: tbl_change.php:860
msgid "Binary - do not edit"
@@ -11660,7 +11667,7 @@ msgstr "值"
msgid "Table %s already exists!"
msgstr "資料表 %s 已存在!"
-#: tbl_create.php:231
+#: tbl_create.php:230
#, php-format
msgid "Table %1$s has been created."
msgstr "建立資料表 %1$s 成功"
@@ -11818,7 +11825,7 @@ msgstr "排序規則表碎片"
#: tbl_operations.php:688
#, php-format
msgid "Table %s has been flushed"
-msgstr "已強制更新表 %s "
+msgstr "已強制更新表 %s"
#: tbl_operations.php:696
msgid "Flush the table (FLUSH)"
@@ -11873,45 +11880,45 @@ msgstr "刪除分區"
msgid "Check referential integrity:"
msgstr "檢查引用完整性:"
-#: tbl_printview.php:73
+#: tbl_printview.php:71
#, fuzzy
#| msgid "Show tables"
msgid "Showing tables"
msgstr "顯示資料表"
-#: tbl_printview.php:294 tbl_structure.php:830
+#: tbl_printview.php:292 tbl_structure.php:830
msgid "Space usage"
msgstr "已用空間"
-#: tbl_printview.php:298 tbl_structure.php:834
+#: tbl_printview.php:296 tbl_structure.php:834
msgid "Usage"
msgstr "已用"
-#: tbl_printview.php:325 tbl_structure.php:861
+#: tbl_printview.php:323 tbl_structure.php:861
msgid "Effective"
msgstr "有效"
-#: tbl_printview.php:350 tbl_structure.php:896
+#: tbl_printview.php:348 tbl_structure.php:896
msgid "Row Statistics"
msgstr "行統計"
-#: tbl_printview.php:364 tbl_structure.php:911
+#: tbl_printview.php:362 tbl_structure.php:911
msgid "static"
msgstr "靜態"
-#: tbl_printview.php:366 tbl_structure.php:913
+#: tbl_printview.php:364 tbl_structure.php:913
msgid "dynamic"
msgstr "動態"
-#: tbl_printview.php:389 tbl_structure.php:956
+#: tbl_printview.php:387 tbl_structure.php:956
msgid "Row length"
msgstr "行長度"
-#: tbl_printview.php:402 tbl_structure.php:964
+#: tbl_printview.php:400 tbl_structure.php:964
msgid "Row size"
-msgstr "行大小 "
+msgstr "行大小"
-#: tbl_printview.php:412 tbl_structure.php:972
+#: tbl_printview.php:410 tbl_structure.php:972
msgid "Next autoindex"
msgstr ""
@@ -11990,7 +11997,7 @@ msgstr "無"
#: tbl_structure.php:363
#, php-format
msgid "Column %s has been dropped"
-msgstr "已刪除欄位 %s "
+msgstr "已刪除欄位 %s"
#: tbl_structure.php:376 tbl_structure.php:473
#, php-format
@@ -12219,33 +12226,33 @@ msgstr "追蹤下列資料操作指令:"
msgid "Create version"
msgstr "建立版本"
-#: tbl_zoom_select.php:209
+#: tbl_zoom_select.php:210
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "執行“依例查詢”(萬用字元:“%”)"
-#: tbl_zoom_select.php:219
+#: tbl_zoom_select.php:220
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "隱藏搜尋條件"
-#: tbl_zoom_select.php:267
+#: tbl_zoom_select.php:268
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:287
+#: tbl_zoom_select.php:288
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "顯示的最多行數"
-#: tbl_zoom_select.php:405
+#: tbl_zoom_select.php:406
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:412
+#: tbl_zoom_select.php:413
#, fuzzy
#| msgid "Control user"
msgid "How to use"
diff --git a/scripts/compress-js b/scripts/compress-js
index 445cae49fb..29e5c76400 100755
--- a/scripts/compress-js
+++ b/scripts/compress-js
@@ -4,7 +4,7 @@ set -e
for file in `find js -name '*.js' -not -name '*min.js'` ; do
mkdir -p sources/`dirname $file`
- java -jar ./scripts/google-javascript-compiler/compiler.jar --js $file --js_output_file $file.tmp
+ yui-compressor $file > $file.tmp
cp -a $file sources/$file
mv $file.tmp $file
done
diff --git a/scripts/google-javascript-compiler/COPYING b/scripts/google-javascript-compiler/COPYING
deleted file mode 100644
index d645695673..0000000000
--- a/scripts/google-javascript-compiler/COPYING
+++ /dev/null
@@ -1,202 +0,0 @@
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
diff --git a/scripts/google-javascript-compiler/README b/scripts/google-javascript-compiler/README
deleted file mode 100644
index 8718f5b572..0000000000
--- a/scripts/google-javascript-compiler/README
+++ /dev/null
@@ -1,261 +0,0 @@
-/*
- * Copyright 2009 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-//
-// Contents
-//
-
-The Closure Compiler performs checking, instrumentation, and
-optimizations on JavaScript code. The purpose of this README is to
-explain how to build and run the Closure Compiler.
-
-The Closure Compiler requires Java 6 or higher.
-http://www.java.com/
-
-
-//
-// Building The Closure Compiler
-//
-
-There are three ways to get a Closure Compiler executable.
-
-1) Use one we built for you.
-
-Pre-built Closure binaries can be found at
-http://code.google.com/p/closure-compiler/downloads/list
-
-
-2) Check out the source and build it with Apache Ant.
-
-First, check out the full source tree of the Closure Compiler. There
-are instructions on how to do this at the project site.
-http://code.google.com/p/closure-compiler/source/checkout
-
-Apache Ant is a cross-platform build tool.
-http://ant.apache.org/
-
-At the root of the source tree, there is an Ant file named
-build.xml. To use it, navigate to the same directory and type the
-command
-
-ant jar
-
-This will produce a jar file called "build/compiler.jar".
-
-
-3) Check out the source and build it with Eclipse.
-
-Eclipse is a cross-platform IDE.
-http://www.eclipse.org/
-
-Under Eclipse's File menu, click "New > Project ..." and create a
-"Java Project." You will see an options screen. Give the project a
-name, select "Create project from existing source," and choose the
-root of the checked-out source tree as the existing directory. Verify
-that you are using JRE version 6 or higher.
-
-Eclipse can use the build.xml file to discover rules. When you
-navigate to the build.xml file, you will see all the build rules in
-the "Outline" pane. Run the "jar" rule to build the compiler in
-build/compiler.jar.
-
-
-//
-// Running The Closure Compiler
-//
-
-Once you have the jar binary, running the Closure Compiler is straightforward.
-
-On the command line, type
-
-java -jar compiler.jar
-
-This starts the compiler in interactive mode. Type
-
-var x = 17 + 25;
-
-then hit "Enter", then hit "Ctrl-Z" (on Windows) or "Ctrl-D" (on Mac or Linux)
-and "Enter" again. The Compiler will respond:
-
-var x=42;
-
-The Closure Compiler has many options for reading input from a file,
-writing output to a file, checking your code, and running
-optimizations. To learn more, type
-
-java -jar compiler.jar --help
-
-You can read more detailed documentation about the many flags at
-http://code.google.com/closure/compiler/docs/gettingstarted_app.html
-
-
-//
-// Compiling Multiple Scripts
-//
-
-If you have multiple scripts, you should compile them all together with
-one compile command.
-
-java -jar compiler.jar --js=in1.js --js=in2.js ... --js_output_file=out.js
-
-The Closure Compiler will concatenate the files in the order they're
-passed at the command line.
-
-If you need to compile many, many scripts together, you may start to
-run into problems with managing dependencies between scripts. You
-should check out the Closure Library. It contains functions for
-enforcing dependencies between scripts, and a tool called calcdeps.py
-that knows how to give scripts to the Closure Compiler in the right
-order.
-
-http://code.google.com/p/closure-library/
-
-//
-// Licensing
-//
-
-Unless otherwise stated, all source files are licensed under
-the Apache License, Version 2.0.
-
-
------
-Code under:
-src/com/google/javascript/rhino
-test/com/google/javascript/rhino
-
-URL: http://www.mozilla.org/rhino
-Version: 1.5R3, with heavy modifications
-License: Netscape Public License and MPL / GPL dual license
-
-Description: A partial copy of Mozilla Rhino. Mozilla Rhino is an
-implementation of JavaScript for the JVM. The JavaScript parser and
-the parse tree data structures were extracted and modified
-significantly for use by Google's JavaScript compiler.
-
-Local Modifications: The packages have been renamespaced. All code not
-relavant to parsing has been removed. A JSDoc parser and static typing
-system have been added.
-
-
------
-Code in:
-lib/libtrunk_rhino_parser_jarjared.jar
-
-Rhino
-URL: http://www.mozilla.org/rhino
-Version: Trunk
-License: Netscape Public License and MPL / GPL dual license
-
-Description: Mozilla Rhino is an implementation of JavaScript for the JVM.
-
-Local Modifications: None. We've used JarJar to renamespace the code
-post-compilation. See:
-http://code.google.com/p/jarjar/
-
-
------
-Code in:
-lib/args4j_deploy.jar
-
-Args4j
-URL: https://args4j.dev.java.net/
-Version: 2.0.9
-License: MIT
-
-Description:
-args4j is a small Java class library that makes it easy to parse command line
-options/arguments in your CUI application.
-
-Local Modifications: None.
-
-
------
-Code in:
-lib/google_common_deploy.jar
-
-Guava Libraries
-URL: http://code.google.com/p/guava-libraries/
-Version: Trunk
-License: Apache License 2.0
-
-Description: Google's core Java libraries.
-
-Local Modifications: None.
-
-
------
-Code in:
-lib/hamcrest-core-1.1.jar
-
-Hamcrest
-URL: http://code.google.com/p/hamcrest
-License: BSD
-License File: LICENSE
-
-Description:
-Provides a library of matcher objects (also known as constraints or
-predicates) allowing 'match' rules to be defined declaratively, to be used in
-other frameworks. Typical scenarios include testing frameworks, mocking
-libraries and UI validation rules.
-
-Local modifications:
-The original jars contained both source code and compiled classes.
-
-hamcrest-core-1.1.jar just contains the compiled classes.
-
-
-----
-Code in:
-lib/junit.jar
-
-JUnit
-URL: http://sourceforge.net/projects/junit/
-Version: 4.5
-License: Common Public License 1.0
-
-Description: A framework for writing and running automated tests in Java.
-
-Local Modifications: None.
-
-
----
-Code in:
-lib/protobuf_deploy.jar
-
-Protocol Buffers
-URL: http://code.google.com/p/protobuf/
-Version: 2.2.0a
-License: New BSD License
-
-Description: Supporting libraries for protocol buffers,
-an encoding of structured data.
-
-Local Modifications: None
-
-
----
-Code in:
-lib/ant_deploy.jar
-
-URL: http://ant.apache.org/bindownload.cgi
-Version: 1.6.5
-License: Apache License 2.0
-Description:
- Ant is a Java based build tool. In theory it is kind of like "make"
- without make's wrinkles and with the full portability of pure java code.
-
-Local Modifications:
- Modified apache-ant-1.6.5/bin/ant to look in the ant.runfiles directory
diff --git a/scripts/google-javascript-compiler/compiler.jar b/scripts/google-javascript-compiler/compiler.jar
deleted file mode 100644
index 4dfa5ad0b9..0000000000
Binary files a/scripts/google-javascript-compiler/compiler.jar and /dev/null differ
diff --git a/setup/frames/index.inc.php b/setup/frames/index.inc.php
index 7a2e8c795b..283fad2910 100644
--- a/setup/frames/index.inc.php
+++ b/setup/frames/index.inc.php
@@ -114,7 +114,7 @@ messages_show_html();
-
+
+
-
+
'simple'));
+?>
+
+